forked from govau/design-system-components
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 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
39
40
41
{
"devDependencies": {
"autoprefixer": "^7.1.6",
"cfonts": "^2.1.2",
"chalk": "^2.3.0",
"express": "^4.16.2",
"inquirer": "4.0.0",
"jest-cli": "^22.4.3",
"lerna": "^2.5.1",
"node-sass": "^4.6.1",
"pa11y": "^4.13.1",
"postcss": "^6.0.14",
"semver": "^5.4.1",
"treeify": "^1.0.1"
},
"scripts": {
"scaffolding": "node ./scripts/helper.js scaffolding",
"bootstrap": "lerna bootstrap",
"build": "lerna run build --concurrency 1",
"publish": "lerna publish --skip-git",
"nuke": "npm run delete:node_modules | npm run delete:lib",
"delete:node_modules": "rm -rf packages/*/node_modules | rm -rf node_modules",
"delete:lib": "rm -rf packages/*/lib/**",
"test:unit-test": "jest",
"test": "node scripts/helper.js test && lerna run test:a11y --concurrency 1"
},
"jest": {
"testRegex": "\\.spec.js$",
"collectCoverageFrom": [
"packages/*/lib/js/*.js"
],
"coverageThreshold": {
"global": {
"branches": 0,
"functions": 0,
"lines": 0,
"statements": 0
}
}
}
}