forked from codymikol/karma-webpack
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
69 lines (69 loc) · 1.98 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
{
"name": "karma-webpack",
"version": "2.0.8",
"author": "Tobias Koppers @sokra",
"description": "Use webpack with karma",
"license": "MIT",
"homepage": "http://github.com/webpack/karma-webpack",
"scripts": {
"gulp": "gulp",
"lint": "gulp lint",
"clean": "gulp clean",
"pretest": "npm run lint",
"test": "npm run test.unit",
"test.unit": "mocha --compilers js:babel-register --full-trace --check-leaks test/unit",
"test.integration": "npm run build && karma start --single-run",
"travis": "npm run test.unit && npm run test.integration",
"travis:test": "npm run test.unit",
"travis:lint": "npm run lint",
"release": "standard-version",
"release:publish": "npm run build:release && npm publish --access public",
"build:watch": "gulp build.watch",
"build:release": "gulp",
"build": "gulp build"
},
"files": [
"lib",
"index.js"
],
"repository": {
"type": "git",
"url": "https://github.com/webpack/karma-webpack.git"
},
"peerDependencies": {
"webpack": "^1.0.0 || ^2.0.0 || ^3.0.0"
},
"dependencies": {
"async": "~0.9.0",
"loader-utils": "^0.2.5",
"lodash": "^3.8.0",
"source-map": "^0.5.6",
"webpack-dev-middleware": "^1.12.0"
},
"devDependencies": {
"babel-cli": "^6.11.4",
"babel-core": "^6.11.4",
"babel-plugin-transform-runtime": "^6.12.0",
"babel-polyfill": "^6.9.1",
"babel-preset-es2015": "^6.9.0",
"babel-preset-stage-2": "^6.11.0",
"babel-register": "^6.11.6",
"chai": "^3.5.0",
"chai-as-promised": "^5.3.0",
"del": "^2.2.1",
"eslint": "^3.1.1",
"eslint-plugin-babel": "^3.3.0",
"gulp": "github:gulpjs/gulp#4.0",
"gulp-babel": "^6.1.2",
"gulp-eslint": "^3.0.1",
"gulp-util": "^3.0.7",
"gulp-watch": "^4.3.9",
"istanbul": "^0.4.4",
"karma": "^1.x",
"karma-chrome-launcher": "~1.0.1",
"karma-mocha": "~1.1.1",
"karma-spec-reporter": "~0.0.22",
"mocha": "^2.5.3",
"standard-version": "^4.0.0"
}
}