-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
99 lines (99 loc) · 1.99 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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
{
"name": "@gold.au/design-system",
"private": true,
"version": "0.0.0",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/designsystemau/gold-design-system"
},
"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.22.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": {
"changeset": "changeset",
"pkgs:version": "changeset version",
"pkgs:release": "npm run build && changeset publish",
"scaffolding": "node ./scripts/helper.js scaffolding",
"bootstrap": "lerna bootstrap --hoist",
"build": "lerna run build",
"test": "node scripts/helper.js test && node ./scripts/a11y.js",
"test:unit-test": "jest",
"setup": "npm i && npm run bootstrap",
"clean": "git clean -xdf"
},
"jest": {
"testRegex": "\\.spec.js$",
"collectCoverageFrom": [
"packages/*/lib/js/*.js"
],
"coverageThreshold": {
"global": {
"branches": 0,
"functions": 0,
"lines": 0,
"statements": 0
}
}
},
"dependencies": {
"@changesets/cli": "^2.17.0",
"npm-run-all": "^4.1.5"
},
"pancake": {
"auto-save": true,
"plugins": true,
"ignore": [],
"json": {
"enable": false,
"location": "pancake/",
"name": "pancake",
"content": {
"name": true,
"version": true,
"dependencies": true,
"path": true,
"settings": true
}
},
"css": {
"minified": true,
"modules": false,
"browsers": [
"last 2 versions",
"ie 8",
"ie 9",
"ie 10"
],
"location": "pancake/css/",
"name": "pancake.min.css"
},
"sass": {
"modules": false,
"location": "pancake/sass/",
"name": "pancake.scss"
},
"js": {
"minified": true,
"modules": false,
"location": "pancake/js/",
"name": "pancake.min.js"
},
"react": {
"location": "pancake/react/"
}
}
}