This repository was archived by the owner on Aug 26, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 110
/
Copy pathpackage.json
129 lines (123 loc) · 3.21 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
124
125
126
127
128
129
{
"name": "@gov.au/breadcrumbs",
"version": "3.0.4",
"description": "Breadcrumbs help users understand where they are in the service and how they got there.",
"keywords": [
"auds",
"pancake",
"pancake-module",
"sass",
"scss",
"css",
"gov.au",
"Commonwealth of Australia",
"design guide",
"design system",
"navigation",
"breadcrumbs"
],
"scripts": {
"postinstall": "pancake",
"test:a11y": "node ../../scripts/a11y.js",
"test:helper": "node ../../scripts/helper.js test",
"test": "npm-run-all --parallel test:*",
"prepublish": "npm run test:helper && npm run build:pre",
"build:pre": "node ../../scripts/helper.js precompile publish",
"build:js": "npm run build:pre && node ../../scripts/helper.js compile",
"build:react": "cd tests/react/ && webpack",
"build": "npm run build:js && npm run build:react",
"serve": "browser-sync tests --files \"tests/**/*.html, tests/**/*.css, tests/**/*.js\"",
"watch:js": "onchange \"src/js/*.js\" -- npm run build:js",
"watch:jsx": "onchange \"src/react/*.js\" \"tests/react/index.js\" -- npm run build",
"watch:sass": "onchange \"src/sass/*.scss\" \"tests/site/test.scss\" -- npm run build",
"watch": "npm run build && npm-run-all --parallel serve watch:*"
},
"pancake": {
"pancake-module": {
"version": "1.0.0",
"plugins": [
"@gov.au/pancake-sass",
"@gov.au/pancake-react",
"@gov.au/pancake-json"
],
"sass": {
"path": "lib/sass/_module.scss",
"sass-versioning": true
},
"react": {
"path": "lib/react/react.js"
}
}
},
"main": "lib/react/react.es5.js",
"dependencies": {
"@gov.au/pancake": "~1",
"@gov.au/pancake-sass": "~2",
"@gov.au/pancake-react": "~1",
"@gov.au/pancake-json": "~1",
"@gov.au/core": "^3.0.0",
"@gov.au/link-list": "^3.0.0"
},
"peerDependencies": {
"@gov.au/core": "^3.0.0",
"@gov.au/link-list": "^3.0.0"
},
"devDependencies": {
"@babel/core": "^7.3.4",
"babel-loader": "^8.0.5",
"@babel/preset-react": "^7.0.0",
"@babel/preset-env": "^7.3.4",
"browser-sync": "^2.26.3",
"npm-run-all": "^4.1.5",
"onchange": "^5.2.0",
"react": "^16.8.4",
"react-dom": "^16.8.4",
"react-router-dom": "^4.3.1",
"webpack": "^4.29.6",
"webpack-cli": "^3.2.3"
},
"files": [
"lib/*"
],
"engines": {
"node": ">=0.12.0",
"npm": "^3.0.0"
},
"repository": {
"type": "git",
"url": "https://github.com/govau/design-system-components.git"
},
"homepage": "https://designsystem.gov.au/components/breadcrumbs",
"bugs": {
"url": "https://github.com/govau/design-system-components/issues",
"email": "[email protected]"
},
"author": {
"name": "Commonwealth of Australia, DTA",
"email": "[email protected]",
"url": "https://www.dta.gov.au/"
},
"contributors": [
{
"name": "Dominik Wilkowski",
"email": "[email protected]",
"url": "https://github.com/dominikwilkowski"
},
{
"name": "Simon Pascal Klein",
"email": "[email protected]",
"url": "https://github.com/klepas"
},
{
"name": "Trevor Brennan",
"email": "[email protected]",
"url": "https://github.com/TrebBrennan"
},
{
"name": "Alex Page",
"email": "[email protected]",
"url": "https://github.com/alex-page"
}
],
"license": "MIT"
}