-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
71 lines (71 loc) · 2.09 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
68
69
70
71
{
"name": "huntris",
"version": "0.5.0",
"description": "Tetris developed with Modern JavaScript and HTML5 Canvas",
"keywords": [
"huntris",
"tetris",
"javascript-tetris"
],
"main": "./src/app.js",
"engines": {
"node": ">=6.6.0",
"npm": ">=3.10.3"
},
"devDependencies": {
"babel-core": "^6.21.0",
"babel-eslint": "^6.1.2",
"babel-loader": "^6.2.10",
"babel-plugin-transform-decorators-legacy": "^1.3.4",
"babel-preset-es2015": "^6.18.0",
"canvas": "^1.6.2",
"chai": "^3.5.0",
"css-loader": "^0.26.1",
"eslint": "^3.13.1",
"eslint-config-airbnb-base": "^11.0.1",
"eslint-loader": "^1.6.1",
"eslint-plugin-import": "^2.2.0",
"html-webpack-plugin": "^2.26.0",
"jsdom": "9.9.1",
"jsdom-global": "2.1.1",
"mocha": "^3.2.0",
"nyc": "^10.1.2",
"style-loader": "^0.13.1",
"webpack": "^2.2.0-rc.4"
},
"dependencies": {
"autobind-decorator": "^1.3.4",
"chai": "^3.5.0",
"eventemitter3": "^2.0.2",
"sinon": "^1.17.7",
"webpack-dev-server": "2.2.0-rc.0"
},
"babel": {
"sourceMaps": "inline",
"presets": [
"es2015"
],
"plugins": [
"babel-plugin-transform-decorators-legacy"
]
},
"nyc": {
"exclude": [
"**/__tests__/*-spec.js",
"build",
"dist",
"coverage",
"tools"
]
},
"scripts": {
"start": "node ./node_modules/.bin/webpack-dev-server --config ./tools/webpack.config.js --hot --open",
"build": "node ./node_modules/.bin/webpack --config ./tools/webpack.config.js",
"lint": "node ./node_modules/.bin/eslint --config ./tools/.eslintrc.js ./src",
"tdd": "node ./node_modules/.bin/mocha --watch --inspect --compilers js:babel-core/register ./src/**/__tests__/*-spec.js --watch --opts /.tools/mocha.opts ./src/**/**/__tests__",
"test": "node ./node_modules/.bin/mocha --compilers js:babel-core/register ./src/**/__tests__/*-spec.js --opts /.tools/mocha.opts ./src/**/**/__tests__",
"coverage": "node ./node_modules/.bin/nyc --all --reporter=html npm run test"
},
"author": "CoderK",
"license": "ISC"
}