-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 1.3 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
{
"name": "life",
"version": "1.0.0",
"description": "game of life",
"main": "index.js",
"scripts": {
"build": "./node_modules/.bin/webpack",
"dev": "./node_modules/.bin/webpack-dev-server",
"test": "./node_modules/.bin/karma start karma.conf.js"
},
"keywords": [
"game",
"life"
],
"author": "gs",
"license": "ISC",
"devDependencies": {
"babel-core": "^6.21.0",
"babel-loader": "^6.2.10",
"babel-plugin-transform-es2015-modules-commonjs": "^6.18.0",
"babel-preset-es2015": "^6.18.0",
"babel-preset-stage-2": "^6.18.0",
"chai": "^3.5.0",
"css-loader": "^0.26.1",
"eslint": "^3.12.2",
"eslint-config-airbnb-base": "^11.0.0",
"eslint-plugin-import": "^2.2.0",
"html-webpack-plugin": "^2.24.1",
"karma": "^1.3.0",
"karma-chai": "^0.1.0",
"karma-mocha": "^1.3.0",
"karma-mocha-reporter": "^2.2.1",
"karma-phantomjs-launcher": "^1.0.2",
"karma-sinon": "^1.0.5",
"karma-sinon-chai": "^1.2.4",
"karma-webpack": "^1.8.1",
"mocha": "^3.2.0",
"phantomjs-prebuilt": "^2.1.14",
"pug": "^2.0.0-beta6",
"pug-loader": "^2.3.0",
"sinon": "^1.17.6",
"style-loader": "^0.13.1",
"stylus": "^0.54.5",
"stylus-loader": "^2.4.0",
"webpack": "^1.14.0",
"webpack-dev-server": "^1.16.2"
}
}