forked from nodejs/nodejs.org
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
74 lines (74 loc) · 2.44 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
{
"name": "nodejs.org",
"private": true,
"description": "Nodejs.org website",
"homepage": "https://nodejs.org",
"scripts": {
"build": "node build.js",
"serve": "node server.js",
"external:survey": "rsync -avz --exclude 'node_modules*' --exclude 'package*' external/survey-2018/ build/en/user-survey-report",
"gzip": "find build -type f \\( -name '*.html' -o -name '*.css' -o -name '*.js' -o -name '*.xml' -o -name '*.json' \\) -exec gzip -kf9 {} \\;",
"deploy": "npm run load-schedule && npm run build && npm run external:survey && npm run gzip",
"load-versions": "node scripts/load-versions.js",
"load-schedule": "curl -sS https://raw.githubusercontent.com/nodejs/Release/master/schedule.json -o source/schedule.json",
"start": "npm run serve",
"test": "npm run test:lint && npm run test:unit && npm run test:smoke",
"test:lint": "standard && htmllint **/*.hbs && stylint layouts/css",
"test:unit": "tape tests/**/*.test.js | faucet",
"test:smoke": "tape tests/*.smoketest.js | faucet"
},
"repository": "nodejs/nodejs.org",
"author": "Node.js Website Working Group",
"license": "MIT",
"engines": {
"node": ">=4.5.0"
},
"standard": {
"ignore": [
"static/js/modernizr.custom.js",
"static/js/dnt_helper.js",
"static/legacy/*",
"external"
]
},
"dependencies": {
"autoprefixer-stylus": "0.14.0",
"cheerio": "0.22.0",
"chokidar": "^2.0.4",
"handlebars": "4.0.12",
"jstransformer-handlebars": "1.1.0",
"junk": "2.1.0",
"lodash.defaultsdeep": "4.6.0",
"marked": "0.3.19",
"metalsmith": "2.3.0",
"metalsmith-collections": "0.9.0",
"metalsmith-discover-helpers": "^0.1.1",
"metalsmith-discover-partials": "^0.1.2",
"metalsmith-feed": "1.0.0",
"metalsmith-layouts": "2.1.0",
"metalsmith-markdown": "^1.0.1",
"metalsmith-metadata": "0.0.4",
"metalsmith-permalinks": "^2.0.0",
"metalsmith-prism": "3.1.1",
"metalsmith-stylus": "3.0.0",
"metalsmith-yearly-pagination": "^2.0.1",
"ncp": "2.0.0",
"node-version-data": "1.0.1",
"octonode": "^0.9.3",
"request": "^2.87.0",
"require-dir": "1.0.0",
"semver": "5.5.0",
"st": "1.2.2",
"strftime": "0.10.0"
},
"devDependencies": {
"faucet": "^0.0.1",
"htmllint-cli": "^0.0.6",
"nock": "^9.5.0",
"pre-commit": "^1.2.2",
"proxyquire": "^2.0.1",
"standard": "^11.0.1",
"stylint": "^1.5.9",
"tape": "^4.9.1"
}
}