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
125 lines (119 loc) · 3.11 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
{
"name": "@gov.au/control-input",
"version": "2.2.0",
"description": "Control inputs include radio buttons and checkboxes. They allow users to select one or more options.",
"keywords": [
"uikit",
"pancake",
"pancake-module",
"sass",
"scss",
"css",
"gov.au",
"Commonwealth of Australia",
"design guide",
"design system"
],
"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/js/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/js/react.js"
}
}
},
"main": "lib/js/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"
},
"peerDependencies": {
"@gov.au/core": "^3.0.0"
},
"devDependencies": {
"babel-core": "^6.26.0",
"babel-loader": "^7.1.2",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-0": "^6.24.1",
"browser-sync": "^2.18.13",
"npm-run-all": "^4.1.2",
"onchange": "^3.2.1",
"react": "^16.1.1",
"react-dom": "^16.1.1",
"webpack": "^3.8.1"
},
"files": [
"lib/*"
],
"engines": {
"node": ">=0.12.0",
"npm": "^3.0.0"
},
"repository": {
"type": "git",
"url": "https://github.com/govau/uikit.git"
},
"homepage": "https://designsystem.gov.au/components/control-input",
"bugs": {
"url": "https://github.com/govau/uikit/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"
}