-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
39 lines (39 loc) · 1.37 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
{
"name": "code42-template",
"version": "0.0.1",
"license": "MIT",
"dependencies": {
"babel-core": "^6.8.0",
"babel-loader": "^6.2.4",
"babel-polyfill": "^6.8.0",
"babel-preset-es2015": "^6.6.0",
"babel-register": "^6.8.0",
"imports-loader": "^0.6.5",
"stats-webpack-plugin": "^0.2.1",
"webpack": "^1.9.11",
"webpack-dev-server": "^1.9.0"
},
"devDependencies": {
"chai": "^3.5.0",
"karma": "^0.13.22",
"karma-chai": "^0.1.0",
"karma-chrome-launcher": "^1.0.1",
"karma-mocha": "^1.0.1",
"phantomjs-prebuilt": "^2.1.0",
"karma-phantomjs-launcher": "^1.0.0",
"karma-sourcemap-loader": "^0.3.7",
"karma-spec-reporter": "0.0.26",
"karma-webpack": "^1.7.0",
"mocha": "^2.4.5",
"mocha-loader": "^0.7.1",
"mocha-webpack": "^0.4.0"
},
"scripts": {
"test": "npm run test:unit && npm run test:integration",
"test:unit": "NODE_ENV=test NODE_PATH='./app/assets/javascripts' mocha-webpack",
"test:unit:watch": "npm run test:unit -- --watch",
"test:browser": "NODE_ENV=test NODE_PATH='./app/assets/javascripts' webpack-dev-server --config config/webpack.config.test.browser.js --hot --inline",
"test:integration": "NODE_ENV=test NODE_PATH='./app/assets/javascripts' karma start config/karma.conf.js",
"test:integration:watch": "npm run test:integration -- --auto-watch --no-single-run"
}
}