-
Notifications
You must be signed in to change notification settings - Fork 17
/
package.json
65 lines (63 loc) · 1.97 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
{
"name": "foxman-packages",
"private": true,
"scripts": {
"boot": "lerna bootstrap",
"clean": "lerna clean",
"publish": "lerna publish",
"lint": "eslint packages extension --quiet",
"lint-fix": "eslint packages/**/*.js --fix",
"test": "npm run boot && npm run lint && npm run jest",
"jest": "jest --no-cache",
"init-contributors": "all-contributors init",
"add-contributor": "all-contributors add",
"generate-contributors": "all-contributors generate",
"prettier": "prettier-eslint \"packages/**/*.js\" --prettier.single-quote=true es6 --write"
},
"jest": {
"collectCoverage": true,
"coverageDirectory": "coverage",
"collectCoverageFrom": [
"packages/**/*.{js}",
"!**/node_modules/**",
"!**/foxman-plugin-server/lib/client/**",
"!**/foxman-plugin-livereload/static/**",
"!**/foxman-plugin-vconsole/static/**",
"!**/foxman-plugin-nei/**",
"!**/foxman-plugin-proxy/**",
"!**/foxman-plugin-server/**",
"!**/foxman-plugin-smartmount/**",
"!**/foxman-plugin-mockcontrol/**",
"!**/foxman-plugin-publicmock/**",
"!**/foxman-plugin-routedisplay/**",
"!**/foxman-plugin-automount/**",
"!**/foxman-plugin-smartmount/**",
"!**/foxman-plugin-webpackdevserver/**",
"!**/foxman-plugin-forward/**",
"!**/foxman-processor-autoprefixer/**",
"!**/foxman-processor-mcss/**",
"!**/foxman-engine-handlebars/**",
"!**/foxman-engine-arttemplate/**",
"!packages/**/logger.js"
],
"moduleFileExtensions": [
"js"
],
"testRegex": "/__test__/.*\\.test\\.(js)$"
},
"devDependencies": {
"all-contributors-cli": "^5.0.0",
"commitizen": "^3.0.0",
"cz-conventional-changelog": "^2.0.0",
"eslint": "^5.0.0",
"jest": "^22.1.0",
"lerna": "^3.0.0",
"prettier-eslint-cli": "^4.0.3"
},
"dependencies": {},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}