forked from govau/design-system-components
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
49 lines (49 loc) · 1.17 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
{
"name": "auds",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/govau/design-system-components"
},
"devDependencies": {
"autoprefixer": "^9.4.10",
"cfonts": "^2.4.2",
"chalk": "^2.4.2",
"express": "^4.16.4",
"inquirer": "6.2.2",
"jest-cli": "^24.7.1",
"lerna": "^3.14.1",
"node-sass": "^4.14.0",
"pa11y": "^5.1.0",
"postcss": "^8.2.10",
"puppeteer": "^1.13.0",
"rimraf": "^2.6.3",
"semver": "^5.6.0",
"treeify": "^1.1.0"
},
"scripts": {
"scaffolding": "node ./scripts/helper.js scaffolding",
"bootstrap": "lerna bootstrap --hoist",
"build": "lerna run build",
"publish": "lerna version --no-git-tag-version --no-push",
"nuke": "npm run delete:node_modules | npm run delete:lib",
"delete:node_modules": "lerna clean --yes && rimraf node_modules",
"delete:lib": "rimraf packages/*/lib",
"test:unit-test": "jest",
"test": "node scripts/helper.js test && node ./scripts/a11y.js"
},
"jest": {
"testRegex": "\\.spec.js$",
"collectCoverageFrom": [
"packages/*/lib/js/*.js"
],
"coverageThreshold": {
"global": {
"branches": 0,
"functions": 0,
"lines": 0,
"statements": 0
}
}
}
}