-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
76 lines (76 loc) · 2.02 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
76
{
"name": "webpack-build-analyzer",
"description": "Analyze your webpack build",
"main": "dist",
"files": [
"dist"
],
"scripts": {
"prebuild": "rimraf dist",
"validate": "npm-run-all --parallel lint cover build test --sequential check-coverage",
"build": "babel --ignore *.test.js -d dist src",
"check-coverage": "nyc check-coverage --statements 100 --branches 100 --functions 100 --lines 100",
"cover": "nyc --reporter=lcov --reporter=text --reporter=html mocha src/**/*.test.js",
"report-coverage": "cat ./coverage/lcov.info | node_modules/.bin/codecov",
"lint": "eslint .",
"test": "mocha src/**/*.test.js",
"watch:test": "npm run test -- -w",
"semantic-release": "semantic-release pre && npm publish && semantic-release post"
},
"keywords": [
"webpack",
"dx",
"help"
],
"author": "Jonathan Werner <jwe@posteo.de> (http://jonathanwerner.net/)",
"repository": {
"type": "git",
"url": "https://github.com/js-dxtools/webpack-build-analyzer.git"
},
"license": "MIT",
"devDependencies": {
"babel": "6.5.2",
"babel-cli": "6.7.5",
"babel-core": "6.7.4",
"babel-plugin-espower": "2.1.2",
"babel-preset-es2015": "6.6.0",
"babel-preset-stage-1": "6.5.0",
"babel-register": "6.7.2",
"codecov": "1.0.1",
"cz-conventional-changelog": "1.1.5",
"eslint": "2.7.0",
"eslint-config-jonathanewerner": "1.0.1",
"ghooks": "1.2.0",
"mocha": "2.4.5",
"npm-run-all": "1.7.0",
"nyc": "6.2.1",
"power-assert": "1.3.1",
"rimraf": "2.5.2",
"validate-commit-msg": "2.5.0",
"semantic-release": "^4.3.5"
},
"nyc": {
"exclude": [
"**/*.test.js",
"test/**/*.js"
]
},
"babel": {
"presets": [
"es2015",
"stage-1"
]
},
"eslintConfig": {
"extends": "jonathanewerner"
},
"config": {
"ghooks": {
"commit-msg": "validate-commit-msg",
"pre-commit": "npm run validate -s"
},
"commitizen": {
"path": "node_modules/cz-conventional-changelog"
}
}
}