forked from govau/design-system-components
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
38 lines (38 loc) · 839 Bytes
/
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
{
"devDependencies": {
"autoprefixer": "^6.7.0",
"cfonts": "^1.1.0",
"chalk": "^1.1.3",
"express": "^4.15.2",
"inquirer": "3.0.0",
"jest-cli": "^19.0.2",
"lerna": "^2.0.0",
"node-sass": "^4.5.3",
"pa11y": "^4.7.0",
"postcss": "^5.2.11",
"semver": "^5.3.0",
"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",
"test:unit-test": "jest",
"test": "lerna run test:a11y --concurrency 1 && node scripts/helper.js test"
},
"jest": {
"testRegex": "\\.spec.js$",
"collectCoverageFrom": [
"packages/*/lib/js/*.js"
],
"coverageThreshold": {
"global": {
"branches": 0,
"functions": 0,
"lines": 0,
"statements": 0
}
}
}
}