-
Notifications
You must be signed in to change notification settings - Fork 146
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 1.57 KB
/
package.json
File metadata and controls
63 lines (63 loc) · 1.57 KB
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
{
"name": "spinnaker.io",
"version": "1.0.0",
"description": "Documentation site for spinnaker",
"main": "index.html",
"engines": {
"node": ">=18"
},
"scripts": {
"prestart": "npm run clean",
"start": "exec-bin node_modules/.bin/hugo/hugo server",
"prebuild": "npm run clean",
"build": "exec-bin node_modules/.bin/hugo/hugo --gc",
"build:preview": "exec-bin node_modules/.bin/hugo/hugo --gc --buildFuture -b $DEPLOY_PRIME_URL",
"clean": "shx rm -rf public resources",
"postinstall": "hugo-installer --version otherDependencies.hugo --extended --destination node_modules/.bin/hugo"
},
"otherDependencies": {
"hugo": "0.104.3"
},
"repository": {
"type": "git",
"url": "git+https://github.com/spinnaker/spinnaker.io.git"
},
"keywords": [
"spinnaker",
"documentation"
],
"contributors": [
{
"name": "Rosalind Benoit"
},
{
"name": "Lou Groshek",
"email": "lou@lougroshek.com"
},
{
"name": "Brian Le"
},
{
"name": "Nikema Prophet",
"email": "3941856+prophen@users.noreply.github.com",
"url": "https://nikemaprophet.com"
},
{
"name": "Aimee Ukasick"
}
],
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/spinnaker/spinnaker.io/issues"
},
"homepage": "https://github.com/spinnaker/spinnaker.io#readme",
"devDependencies": {
"autoprefixer": "^9.8.6",
"exec-bin": "^1.0.0",
"hugo-installer": "^4.0.0",
"postcss": "^8.4.31",
"postcss-cli": "^7.1.1",
"prettier": "^2.3.0",
"shx": "^0.3"
}
}