-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
executable file
·43 lines (43 loc) · 1.27 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
{
"name": "webpack-test-sample",
"version": "1.0.0",
"description": "webpack-test-sample",
"main": "dist/bundle.js",
"scripts": {
"build": "gulp build",
"test": "gulp test",
"coverage": "mvn clean test jacoco:report coveralls:report -DdryRun -DcoverallsFile=coverage/java.json; npm test; node_modules/gulp/bin/gulp.js coveralls:merge"
},
"repository": {
"type": "git",
"url": "https://github.com/kainoku/webpack-test-sample.git"
},
"author": "kainoku",
"license": "ISC",
"bugs": {
"url": "https://github.com/kainoku/webpack-test-sample/issues"
},
"homepage": "https://github.com/kainoku/webpack-test-sample",
"devDependencies": {
"coffee-loader": "^0.7.2",
"coffee-script": "^1.10.0",
"coveralls": "^2.11.4",
"gulp": "^3.9.0",
"gulp-coveralls": "^0.1.4",
"gulp-rename": "^1.2.2",
"gulp-util": "^3.0.7",
"istanbul-instrumenter-loader": "^0.1.3",
"jasmine-core": "^2.3.4",
"karma": "^0.13.15",
"karma-coffee-preprocessor": "^0.3.0",
"karma-coverage": "^0.5.3",
"karma-jasmine": "^0.3.6",
"karma-phantomjs-launcher": "^0.2.1",
"karma-webpack": "^1.7.0",
"merge2": "^0.3.6",
"phantomjs": "^1.9.18",
"through2": "^2.0.0",
"webpack": "^1.12.3",
"webpack-stream": "^2.1.1"
}
}