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
106 lines (105 loc) · 2.71 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
{
"name": "@gov.au/file-upload",
"version": "0.1.0",
"description": "Select and upload a file",
"keywords": [
"auds",
"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": "node ../../scripts/helper.js compile",
"build:react": "cd tests/react/ && webpack",
"build": "npm run build:pre && 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",
"@gov.au/form": "^0.1.0"
},
"peerDependencies": {
"@gov.au/core": "^3.0.0",
"@gov.au/form": "^0.1.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",
"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/file-upload",
"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": "Adam Zerella",
"email": "[email protected]",
"url": "https://adamzerella.com"
}
],
"license": "MIT"
}