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 4
/
package.json
120 lines (120 loc) · 2.92 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
{
"name": "chameleon",
"version": "1.3.2",
"description": "Interactive colour template previews for the Design System.",
"main": "src/index.js",
"scripts": {
"start": "npm run build && node src/index.js",
"watch": "npm run build && nodemon src/index.js",
"build:autoprefix": "postcss assets/css/main.css -u autoprefixer -r",
"build:sass": "node-sass assets/sass/main.scss assets/css/main.css --output-style compressed",
"build": "npm run build:sass && npm run build:autoprefix",
"test:unit": "mocha test/unit/*.js --timeout 10000 --exit",
"test": "npm run test:unit"
},
"repository": {
"type": "git",
"url": "git+https://github.com/govau/chameleon.git"
},
"engines": {
"node": "~10",
"npm": "~6"
},
"keywords": [
"interactive",
"form",
"color",
"template",
"preview",
"design",
"system"
],
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/govau/chameleon/issues"
},
"homepage": "https://github.com/govau/chameleon#readme",
"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": "^0.1.2",
"@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/pancake": "latest",
"@gov.au/progress-indicator": "latest",
"@gov.au/responsive-media": "latest",
"@gov.au/searchbox": "^0.2.2",
"@gov.au/select": "latest",
"@gov.au/side-nav": "latest",
"@gov.au/skip-link": "latest",
"@gov.au/tags": "latest",
"@gov.au/text-inputs": "latest",
"@slack/client": "^5.0.0",
"autoprefixer": "^9.5.1",
"cfonts": "^2.4.2",
"color-string": "^1.5.3",
"escape-html": "^1.0.3",
"express": "^4.16.4",
"gradient-string": "^1.2.0",
"node-sass": "^4.11.0",
"postcss": "^7.0.14",
"postcss-cli": "^6.1.2"
},
"devDependencies": {
"chai": "^4.2.0",
"eslint": "^4.19.1",
"eslint-config-airbnb-base": "^12.1.0",
"eslint-plugin-import": "^2.12.0",
"mocha": "^6.2.0",
"nodemon": "^1.18.10"
},
"pancake": {
"auto-save": true,
"plugins": true,
"ignore": [
"@gov.au/pancake-react",
"@gov.au/pancake-json"
],
"css": {
"minified": false,
"modules": false,
"browsers": [],
"location": false,
"name": false
},
"sass": {
"modules": false,
"location": "assets/sass/",
"name": "_uikit.scss"
},
"js": {
"minified": true,
"modules": false,
"location": "assets/js/",
"name": "script.min.js"
}
},
"browserslist": [
"last 2 versions",
"ie 8",
"ie 9",
"ie 10"
]
}