forked from nodejs/nodejs.org
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
87 lines (87 loc) · 3 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
{
"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": "cross-env NODE_ENV=development node server.js",
"external:survey": "rsync -avz --exclude 'node_modules*' --exclude 'package*' external/survey-2018/ build/en/user-survey-report",
"deploy": "npm-run-all load-schedule build:deploy external:survey",
"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",
"linkinator": "delay 3 && linkinator http://localhost:8080/en/ --recurse --silent --skip \"^(?!http://localhost)\"",
"test:linkinator": "npm-run-all --parallel --race \"serve -- --serve-only\" linkinator",
"test:lint:js": "standard",
"test:lint:md": "remark -qf .",
"test:lint:stylelint": "stylelint \"layouts/css/**/*.{css,scss}\"",
"test:lint:lockfile": "lockfile-lint --allowed-hosts npm github.com --allowed-schemes https: --empty-hostname false --type npm --path package-lock.json",
"test:lint": "npm-run-all --parallel test:lint:*",
"test:html": "node scripts/vnu-jar.js",
"test:unit": "tape tests/**/*.test.js | faucet"
},
"repository": "nodejs/nodejs.org",
"author": "Node.js Website Working Group",
"license": "MIT",
"engines": {
"node": ">=12"
},
"standard": {
"ignore": [
"static/legacy/*",
"external"
]
},
"dependencies": {
"autoprefixer": "^10.2.5",
"cheerio": "^0.22.0",
"fibers": "^5.0.0",
"handlebars": "^4.7.7",
"jstransformer-handlebars": "^1.1.0",
"junk": "^3.1.0",
"lodash.defaultsdeep": "^4.6.1",
"marked": "^2.0.1",
"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.3.0",
"metalsmith-metadata": "0.0.4",
"metalsmith-permalinks": "^2.2.0",
"metalsmith-prism": "^3.1.1",
"metalsmith-yearly-pagination": "^4.0.2",
"ncp": "^2.0.0",
"node-version-data": "^1.1.0",
"npm-run-all": "^4.1.5",
"postcss": "^8.2.9",
"sass": "^1.32.8",
"semver": "^7.3.5",
"strftime": "^0.10.0"
},
"devDependencies": {
"chokidar": "^3.5.1",
"cross-env": "^7.0.3",
"delay-cli": "^1.1.0",
"faucet": "0.0.1",
"linkinator": "^2.13.6",
"lockfile-lint": "^4.6.2",
"nock": "^13.0.11",
"node-fetch": "^2.6.1",
"proxyquire": "^2.1.3",
"remark-cli": "^9.0.0",
"remark-frontmatter": "^3.0.0",
"remark-gfm": "^1.0.0",
"remark-preset-lint-node": "^2.1.1",
"st": "^2.0.0",
"standard": "^16.0.3",
"stylelint": "^13.12.0",
"stylelint-config-twbs-bootstrap": "^2.1.0",
"tape": "^5.2.2",
"vnu-jar": "21.2.5"
}
}