-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
42 lines (42 loc) · 1.14 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
{
"name": "es2015-test-coverage-example",
"version": "1.0.0",
"description": "Example for tracking test coverage with es2015",
"scripts": {
"test": "node ./node_modules/.bin/karma start",
"coverage": "node ./node_modules/.bin/rimraf ./coverage && node ./node_modules/.bin/karma start --coverage",
"build": "node ./node_modules/.bin/webpack --progress"
},
"author": {
"name": "KimcCoding",
"email": "[email protected]",
"url": "http://huns.me"
},
"keywords": [
"es2015",
"test",
"isparta",
"karma"
],
"license": "MIT",
"devDependencies": {
"babel-core": "^6.9.1",
"babel-loader": "^6.2.4",
"babel-preset-es2015": "^6.9.0",
"chai": "^3.5.0",
"isparta-loader": "^2.0.0",
"karma": "^0.13.22",
"karma-chai": "^0.1.0",
"karma-chrome-launcher": "^1.0.1",
"karma-coverage": "^1.0.0",
"karma-mocha": "^1.0.1",
"karma-mocha-reporter": "^2.0.3",
"karma-phantomjs-launcher": "^1.0.0",
"karma-sourcemap-loader": "^0.3.7",
"karma-webpack": "^1.7.0",
"mocha": "^2.5.3",
"phantomjs-prebuilt": "^2.1.7",
"rimraf": "^2.5.2",
"webpack": "^1.13.1"
}
}