forked from codymikol/karma-webpack
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
75 lines (75 loc) · 2.56 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
70
71
72
73
74
75
{
"name": "karma-webpack",
"version": "1.8.0",
"author": "Tobias Koppers @sokra",
"description": "Use webpack with karma",
"license": "MIT",
"main": "src/index.js",
"homepage": "http://github.com/webpack/karma-webpack",
"repository": {
"type": "git",
"url": "http://github.com/webpack/karma-webpack"
},
"bugs": {
"url": "http://github.com/webpack/karma-webpack/issues"
},
"scripts": {
"benchmark": "babel-node benchmark",
"benchmark:watch": "nodemon $2 --exec babel-node benchmark",
"build": "babel -s true src -d dist",
"clean": "shx rm -rf dist",
"debug": "nodemon $2 --exec babel-node --debug",
"git:add": "git add --all && git status",
"git:commit": "npm run git:add && git-cz",
"git:push": "git push --follow-tags",
"lint": "eslint src",
"lint:fix": "eslint --fix src",
"postrelease": "npm run setenv:dev",
"prerelease": "npm run clean && npm run lint:fix && npm run scan:security && npm run setenv:prod && npm run build",
"release": "standard-version",
"scan:security": "nsp check",
"scan:updates": "ncu",
"serve": "node dist",
"setenv:dev": "npm config set production false",
"setenv:prod": "npm config set production true",
"start": "nodemon $2 --exec babel-node",
"test": "mocha -c -S -R spec 'tests' --compilers js:babel-register --check-leaks",
"test:export": "mocha -S -R mochawesome 'tests' --compilers js:babel-register --reporter-options reportDir=reports --check-leaks",
"test:watch": "mocha -w -c -S -R spec 'tests' --compilers js:babel-register --check-leaks"
},
"devDependencies": {
"babel-cli": "6.16.0",
"babel-node-debug": "2.0.0",
"babel-plugin-transform-runtime": "^6.15.0",
"babel-preset-babili": "0.0.5",
"babel-preset-es2015": "^6.16.0",
"babel-preset-stage-0": "6.16.0",
"babel-preset-stage-2": "^6.17.0",
"babel-register": "6.16.3",
"babili": "0.0.7",
"benchmark": "2.1.1",
"chai": "3.5.0",
"commitizen": "2.8.6",
"conventional-changelog-cli": "1.2.0",
"eslint": "3.7.1",
"eslint-plugin-babel": "^3.3.0",
"eslint-plugin-promise": "3.0.0",
"eslint-plugin-standard": "2.0.1",
"mocha": "3.1.2",
"mochawesome": "1.5.3",
"nodemon": "1.11.0",
"npm-check-updates": "2.8.5",
"nsp": "2.6.2",
"shx": "0.1.4",
"standard-changelog": "0.0.1",
"standard-version": "3.0.0"
},
"dependencies": {
"loader-utils": "^0.2.16",
"source-map": "^0.5.6",
"webpack-dev-middleware": "^1.8.4"
},
"peerDependencies": {
"webpack": "^1.1.0 || ^2 || ^2.1.0-beta"
}
}