-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
33 lines (33 loc) · 984 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
{
"name": "snake-canvas",
"version": "1.0.0",
"description": "Snake on Canvas",
"main": "index.html",
"scripts": {
"start": "npm run compile && python -m SimpleHTTPServer",
"compile": "./node_modules/.bin/webpack --config webpack.config.js",
"test": "mocha --compilers js:babel-core/register",
"lint": "./node_modules/.bin/eslint src/** test/**; exit 0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/james246/snake-canvas.git"
},
"author": "james246",
"bugs": {
"url": "https://github.com/james246/snake-canvas/issues"
},
"homepage": "https://github.com/james246/snake-canvas#readme",
"devDependencies": {
"babel-core": "^6.25.0",
"babel-preset-es2015": "^6.24.1",
"chai": "^4.0.2",
"eslint": "^4.0.0",
"eslint-config-airbnb-base": "^11.2.0",
"eslint-plugin-import": "^2.3.0",
"jsdom": "^11.0.0",
"mocha": "^3.4.2",
"mocha-phantomjs": "^4.1.0",
"webpack": "^2.6.1"
}
}