forked from nodejs/nodejs.org
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
79 lines (79 loc) · 2.61 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
{
"name": "nodejs.org",
"private": true,
"description": "Nodejs.org website",
"homepage": "https://nodejs.org",
"scripts": {
"build": "node build.js",
"build:deploy": "node build.js --preserveLocale",
"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-all load-schedule build:deploy external:survey 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-all test:lint test:unit",
"test:lint:js": "standard",
"test:lint:htmllint": "htmllint \"**/*.hbs\"",
"test:lint:md": "markdownlint \"**/*.md\" -i \"**/node_modules/**\"",
"test:lint:stylint": "stylint layouts/css",
"test:lint": "npm-run-all --parallel test:lint:*",
"test:unit": "tape tests/**/*.test.js | faucet"
},
"repository": "nodejs/nodejs.org",
"author": "Node.js Website Working Group",
"license": "MIT",
"engines": {
"node": ">=8"
},
"standard": {
"ignore": [
"static/js/modernizr.custom.js",
"static/legacy/*",
"external"
]
},
"dependencies": {
"autoprefixer-stylus": "^1.0.0",
"cheerio": "^0.22.0",
"chokidar": "^3.0.2",
"handlebars": "^4.2.0",
"jstransformer-handlebars": "^1.1.0",
"junk": "^3.1.0",
"lodash.defaultsdeep": "^4.6.1",
"marked": "^0.7.0",
"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.3.1",
"metalsmith-markdown": "^1.2.0",
"metalsmith-metadata": "0.0.4",
"metalsmith-permalinks": "^2.2.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.1.0",
"npm-run-all": "^4.1.5",
"octonode": "^0.9.5",
"request": "^2.88.0",
"require-dir": "^1.2.0",
"semver": "^6.3.0",
"st": "^1.2.2",
"strftime": "^0.10.0"
},
"devDependencies": {
"faucet": "0.0.1",
"htmllint-cli": "0.0.6",
"markdownlint-cli": "^0.18.0",
"nock": "^11.3.2",
"pre-commit": "^1.2.2",
"proxyquire": "^2.1.3",
"standard": "^14.1.0",
"stylint": "^2.0.0",
"tape": "^4.11.0"
}
}