-
Notifications
You must be signed in to change notification settings - Fork 18
/
package.json
127 lines (127 loc) · 3.56 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
{
"private": true,
"name": "service-manual",
"homepage": "https://service-manual.apps.staging.digital.gov.au/",
"twitter": "DTA",
"repository": "https://github.com/govau/service-manual",
"scripts": {
"docs": "cuttlebelle docs",
"build:searchdata": "node scripts/createdocumentdata.js",
"build:searchindex": "node scripts/createsearchindex.js",
"build:search": "npm-run-all build:searchdata build:searchindex",
"build:pages": "cuttlebelle",
"build:sass": "node-sass --output-style compressed -o assets/css src/sass/site.scss",
"build:autoprefixer": "postcss -u autoprefixer -r assets/css/*",
"build:js": "mkdirp assets/js/ && concat-cli -f scripts/js/**/*.js -o assets/js/site.js",
"build": "npm-run-all build:sass build:autoprefixer build:js build:pages build:search",
"watch:site": "cuttlebelle -w -n",
"watch:css": "onchange 'src/sass/**/*.scss' -- npm-run-all build:sass build:autoprefixer",
"watch:js": "onchange 'scripts/js/**/*.js' -- npm run build:js",
"watch": "npm run build && npm run watch:css | npm run watch:js | npm run watch:site",
"test": "echo \"Error: no test specified\" && exit 0"
},
"author": {
"name": "Commonwealth of Australia, DTA",
"email": "[email protected]",
"url": "https://www.dta.gov.au/"
},
"contributors": [
{
"name": "Christopher Lee",
"email": "[email protected]",
"url": "https://github.com/sirleech"
},
{
"name": "Dominik Wilkowski",
"email": "[email protected]",
"url": "https://dominik-wilkowski.com/"
},
{
"name": "Mark Santoso",
"email": "[email protected]"
},
{
"name": "Alexandra Baranov",
"email": "[email protected]"
}
],
"dependencies": {
"@gov.au/accordion": "^3.0.5",
"@gov.au/animate": "^1.0.4",
"@gov.au/body": "^2.0.7",
"@gov.au/breadcrumbs": "^2.1.1",
"@gov.au/buttons": "^3.0.2",
"@gov.au/core": "^3.0.0",
"@gov.au/cta-link": "^2.1.1",
"@gov.au/footer": "^2.1.3",
"@gov.au/grid-12": "^2.0.5",
"@gov.au/header": "^4.1.3",
"@gov.au/headings": "^2.0.5",
"@gov.au/inpage-nav": "^2.0.5",
"@gov.au/link-list": "^2.1.1",
"@gov.au/page-alerts": "^2.1.0",
"@gov.au/skip-link": "^2.0.6",
"@gov.au/text-inputs": "^2.0.7",
"cuttlebelle": "^1.0.0-alpha.66",
"express": "^4.16.3",
"lunr": "^2.3.0",
"marked": "^0.7.0",
"remark": "^9.0.0",
"slugify": "^1.2.9",
"strip-markdown": "^3.0.1"
},
"devDependencies": {
"autoprefixer": "^7.2.4",
"concat-cli": "^4.0.0",
"mkdirp": "^0.5.1",
"node-sass": "^4.12",
"npm-run-all": "^4.1.2",
"onchange": "^6.0.0",
"postcss-cli": "^6.1.3"
},
"engines": {
"node": "~10"
},
"cuttlebelle": {
"folder": {
"homepage": "homepage",
"code": "src"
},
"layouts": {
"page": "layout/page",
"partial": "layout/partial"
},
"site": {
"doctype": "<!DOCTYPE html><!--[if lt IE 8]><html class=\"no-js lt-ie8 lt-ie9\" lang=\"en\"><![endif]--><!--[if IE 8]><html class=\"no-js lt-ie9 ie8\" lang=\"en\"><![endif]--><!--[if IE 9 ]><html class=\"no-js ie9\" lang=\"en\"><![endif]--><!--[if !(IE)]><!--><html class=\"no-js\" lang=\"en\"><!--<![endif]-->",
"markdownRenderer": "scripts/markdown/renderer.js"
}
},
"pancake": {
"auto-save": false,
"plugins": true,
"ignore": [],
"css": {
"modules": false,
"location": false,
"name": false
},
"sass": {
"location": "src/sass/uikit/",
"name": "uikit.scss"
},
"js": {
"modules": false,
"location": "scripts/js/000-uikit/",
"name": "uikit.js"
},
"react": {
"location": "scripts/uikit/"
}
},
"browserslist": [
"last 2 versions",
"ie 8",
"ie 9",
"ie 10"
]
}