forked from codymikol/karma-webpack
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
38 lines (38 loc) · 1 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
{
"name": "karma-webpack",
"version": "1.7.0",
"author": "Tobias Koppers @sokra",
"description": "Use webpack with karma",
"peerDependencies": {
"webpack": "^1.4.0 || ^2 || ^2.1.0-beta"
},
"dependencies": {
"async": "~0.9.0",
"loader-utils": "^0.2.5",
"lodash": "^3.8.0",
"source-map": "^0.1.41",
"webpack-dev-middleware": "^1.0.11"
},
"devDependencies": {
"beautify-lint": "^1.0.4",
"coffee-loader": "~0.7.2",
"eslint": "^3.1.1",
"jsbeautify": "^0.3.6",
"karma": ">=0.13.2 < 1",
"karma-chrome-launcher": "~0.1.5",
"karma-mocha": "~0.1.9",
"karma-spec-reporter": "~0.0.16"
},
"scripts": {
"pretest": "npm run lint && npm run beautify-lint",
"lint": "eslint example index.js mocha-env-loader.js",
"beautify-lint": "beautify-lint *.js"
},
"license": "MIT",
"homepage": "http://github.com/webpack/karma-webpack",
"repository": {
"type": "git",
"url": "https://github.com/webpack/karma-webpack.git"
},
"main": "index.js"
}