-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
58 lines (58 loc) · 1.66 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
{
"name": "design-system-base-theme",
"version": "0.0.1",
"description": "Base theme for the Design System. Please note this is not useful by itself. It acts as a base theme for other themes to build upon.",
"main": "gulpfile.js",
"dependencies": {
"autoprefixer": "^8.6.4",
"node-sass": "^4.7.2",
"postcss-cli": "^5.0.1"
},
"devDependencies": {
"browser-sync": "^2.18.13",
"npm-run-all": "^4.1.2",
"onchange": "^4.0.0"
},
"scripts": {
"build": "node-sass src/sass/dta-ui-kit-base.styles.scss css/dta-ui-kit-base.styles.css --source-map true",
"watch:sass": "npm run build && onchange \"src/sass/*.scss\" -- npm run build",
"serve": "browser-sync start --proxy 'au.gov.dta.test:8888' --files=\"css/*.css\" \"js/*.js\" \"templates/**/*.twig\"",
"watch": "npm-run-all --parallel serve watch:*",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/govau/dta-uikit-base.git"
},
"author": "Digital Transformation Agency",
"license": "ISC",
"bugs": {
"url": "https://github.com/govau/dta-uikit-base/issues"
},
"homepage": "https://github.com/govau/dta-uikit-base",
"pancake": {
"auto-save": true,
"plugins": true,
"ignore": [],
"css": {
"minified": true,
"modules": false,
"browsers": [
"last 2 versions",
"ie 8",
"ie 9",
"ie 10"
],
"location": "pancake/css/",
"name": "pancake.min.css"
},
"sass": {
"modules": false,
"location": "pancake/sass/",
"name": "pancake.scss"
},
"react": {
"location": "pancake/react/"
}
}
}