forked from whxaxes/slither
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
36 lines (36 loc) · 993 Bytes
/
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
{
"name": "slither",
"version": "1.0.0",
"description": "slither game",
"main": "main.js",
"scripts": {
"build": "npm run lint && npm run release",
"lint": "./node_modules/.bin/eslint ./src/**/*.js",
"dev": "node server.js",
"release": "webpack --config ./webpack.dist.js --progress",
"test": "./node_modules/.bin/mocha ./test/*.test.js --compilers js:babel-core/register --recursive --reporter spec"
},
"keywords": [
"game",
"slither"
],
"dependencies": {
"eventemitter3": "^1.2.0",
"stats.js": "^0.16.0"
},
"author": "wanghx",
"license": "MIT",
"devDependencies": {
"babel-core": "^6.7.7",
"babel-loader": "^6.2.4",
"babel-preset-es2015": "^6.6.0",
"eslint": "^2.8.0",
"eslint-config-airbnb": "^8.0.0",
"eslint-plugin-import": "^1.6.0",
"eslint-plugin-jsx-a11y": "^1.0.3",
"eslint-plugin-react": "^5.0.1",
"mocha": "^2.4.5",
"webpack": "^1.12.14",
"webpack-dev-server": "^1.8.2"
}
}