-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
67 lines (67 loc) · 1.98 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
{
"name": "robocode",
"version": "0.1.0",
"description": "Robot Smash",
"main": "robot.js",
"scripts": {
"clean": "rimraf dist",
"build:webpack": "NODE_ENV=production webpack --config webpack.config.prod.js",
"build": "npm run clean && npm run build:webpack",
"test:watch": "npm test -- --watch --growl",
"test": "node_modules/.bin/mocha --compilers js:babel-core/register -c --require ./test/setup.js --recursive",
"test:cov": "babel-node ./node_modules/isparta/bin/isparta cover ./node_modules/mocha/bin/_mocha -- --recursive",
"start": "./node_modules/.bin/concurrent 'node devServer.js' 'npm run test:watch'",
"lint": "eslint src"
},
"repository": {
"type": "git",
"url": "[email protected]:robocode/robocode-game.git"
},
"keywords": [
"robots"
],
"author": "Thomas Anagrius",
"license": "ISC",
"devDependencies": {
"autoprefixer": "^6.0.3",
"babel-core": "^5.4.7",
"babel-eslint": "^3.1.9",
"babel-loader": "^5.1.2",
"babel-plugin-react-transform": "^1.1.1",
"chai": "^3.4.0",
"concurrently": "^0.1.1",
"css-loader": "^0.21.0",
"eslint": "^1.3.1",
"eslint-plugin-react": "^2.3.0",
"expect": "^1.12.2",
"express": "^4.13.3",
"file-loader": "^0.8.4",
"growl": "^1.8.1",
"isparta": "^3.5.0",
"istanbul": "^0.4.0",
"jsdom": "^7.0.2",
"mocha": "^2.3.3",
"postcss": "^5.0.10",
"postcss-loader": "^0.7.0",
"precss": "^1.3.0",
"raw-loader": "^0.5.1",
"react-transform-catch-errors": "^1.0.0",
"react-transform-hmr": "^1.0.0",
"redbox-react": "^1.0.1",
"rimraf": "^2.4.3",
"sinon": "^1.17.2",
"style-loader": "^0.13.0",
"url-loader": "^0.5.6",
"webpack": "^1.12.2",
"webpack-dev-middleware": "^1.2.0",
"webpack-hot-middleware": "^2.0.0"
},
"dependencies": {
"codemirror": "^5.8.0",
"immutable": "^3.7.5",
"invariant": "^2.1.2",
"lodash": "^3.10.1",
"react": "^0.14.1",
"react-dom": "^0.14.1"
}
}