-
-
Notifications
You must be signed in to change notification settings - Fork 14
/
package.json
49 lines (49 loc) · 1.38 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
{
"name": "standard-www",
"description": "Website for standard/standard - http://www.standardjs.com",
"version": "1.0.0",
"bugs": {
"url": "https://github.com/standard/standard-www/issues"
},
"dependencies": {
"github-slugger": "^1.3.0",
"handlebars": "^4.7.6",
"hubdown": "^2.6.0",
"marky-deep-links": "^1.0.1",
"standard-demo": "github:standard/standard-demo"
},
"devDependencies": {
"browserify": "^17.0.0",
"ecstatic": "^4.1.4",
"nodemon": "^2.0.6",
"rimraf": "^3.0.2",
"shelljs": "^0.8.4",
"standard": "*"
},
"homepage": "https://github.com/standard/standard-www",
"keywords": [
"site",
"standard",
"web",
"website",
"www"
],
"license": "ISC",
"main": "gensite.js",
"private": true,
"repository": {
"type": "git",
"url": "https://github.com/standard/standard-www.git"
},
"scripts": {
"build": "npm run build-html && npm run build-js",
"build-html": "node gensite.js",
"build-js": "browserify browser/app.js > dist/standard-www.js",
"clean": "rimraf dist/* && mkdir -p dist",
"deploy": "echo 'Deploying via netlify...' && git push",
"serve": "ecstatic dist --port 4000",
"start": "npm run clean && npm run build",
"test": "standard",
"watch": "npm run serve & nodemon --watch layout --watch markdown --watch static --ext js,html,css --exec 'npm run build'"
}
}