This repository has been archived by the owner on Aug 26, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 29
/
package.json
123 lines (123 loc) · 3.25 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
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
{
"name": "design-system-starter",
"version": "1.1.1",
"description": "The Australian Government Design System Starter Pack",
"scripts": {
"build:autoprefix": "postcss docs/css/main.css -u autoprefixer -r",
"build:css": "node-sass --output-style compressed \"./src/sass/main.scss\" \"./docs/css/main.css\"",
"build:css:dev": "node-sass --output-style compact --source-map true src/sass/main.scss docs/css/main.css",
"build": "npm run build:css && npm run build:autoprefix",
"watch:sass": "onchange \"./src/sass/main.scss\" -- npm run build:css:dev && npm run build:autoprefix",
"serve": "browser-sync start --server ./docs -w --files \"./docs/**/*.html\" \"./docs/css/main.css\" \"./docs/js/script.js\"",
"watch": "npm run build && npm-run-all --parallel serve watch:sass"
},
"repository": {
"type": "git",
"url": "https://github.com/govau/design-system-starter.git"
},
"author": {
"name": "Australian Government - Digital Transformation Agency",
"email": "designsystem@dta.gov.au",
"url": "https://www.dta.gov.au/"
},
"contributors": [
{
"name": "Dominik Wilkowski",
"email": "hi@dominik-wilkowski.com",
"url": "https://dominik-wilkowski.com/"
},
{
"name": "Alex Page",
"email": "alex@alexpage.com.au",
"url": "http://alexpage.com.au"
},
{
"name": "Patrick De Young",
"email": "hello@patrickdeyoung.me",
"url": "https://patrickdeyoung.me"
},
{
"name": "Sukhraj Ghuman",
"email": "sukhrajghuman@live.com",
"url": "https://github.com/sukhrajghuman"
}
],
"license": "MIT",
"devDependencies": {
"browser-sync": "^2.26.14",
"npm-run-all": "^4.1.5",
"onchange": "^4.1.0"
},
"dependencies": {
"@gov.au/accordion": "latest",
"@gov.au/animate": "latest",
"@gov.au/body": "latest",
"@gov.au/breadcrumbs": "latest",
"@gov.au/buttons": "latest",
"@gov.au/callout": "latest",
"@gov.au/card": "latest",
"@gov.au/control-input": "latest",
"@gov.au/core": "latest",
"@gov.au/cta-link": "latest",
"@gov.au/direction-links": "latest",
"@gov.au/footer": "latest",
"@gov.au/form": "latest",
"@gov.au/grid-12": "latest",
"@gov.au/header": "latest",
"@gov.au/headings": "latest",
"@gov.au/inpage-nav": "latest",
"@gov.au/keyword-list": "latest",
"@gov.au/link-list": "latest",
"@gov.au/main-nav": "latest",
"@gov.au/page-alerts": "latest",
"@gov.au/progress-indicator": "latest",
"@gov.au/responsive-media": "latest",
"@gov.au/searchbox": "latest",
"@gov.au/select": "latest",
"@gov.au/side-nav": "latest",
"@gov.au/skip-link": "latest",
"@gov.au/table": "latest",
"@gov.au/tags": "latest",
"@gov.au/text-inputs": "latest",
"autoprefixer": "^9.0.1",
"node-sass": "^4.14.0",
"postcss-cli": "^6.0.0"
},
"pancake": {
"auto-save": true,
"plugins": true,
"ignore": [
"@gov.au/pancake-react",
"@gov.au/pancake-json"
],
"css": {
"minified": true,
"modules": false,
"browsers": [
"last 2 versions",
"ie 8",
"ie 9",
"ie 10"
],
"location": false,
"name": false
},
"sass": {
"modules": false,
"location": "src/sass/",
"name": "_auds.scss"
},
"js": {
"minified": true,
"modules": false,
"location": "docs/js/",
"name": "script.min.js"
}
},
"browserslist": [
"last 2 versions",
"ie 8",
"ie 9",
"ie 10"
]
}