forked from nodejs/nodejs.org
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
68 lines (68 loc) · 1.98 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
{
"name": "nodejs.org",
"private": true,
"description": "Nodejs.org website",
"homepage": "https://nodejs.org",
"scripts": {
"build": "node build.js",
"serve": "node server.js",
"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 build && npm run gzip",
"load-versions": "node scripts/load-versions.js",
"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/*"
]
},
"dependencies": {
"autoprefixer-stylus": "0.14.0",
"cheerio": "0.22.0",
"chokidar": "1.7.0",
"handlebars": "4.0.10",
"junk": "2.1.0",
"lodash.defaultsdeep": "4.6.0",
"marked": "^0.3.9",
"metalsmith": "2.3.0",
"metalsmith-collections": "0.9.0",
"metalsmith-feed": "0.5.0",
"metalsmith-layouts": "1.8.1",
"metalsmith-markdown": "0.2.1",
"metalsmith-metadata": "0.0.4",
"metalsmith-permalinks": "0.5.0",
"metalsmith-prism": "3.1.0",
"metalsmith-stylus": "3.0.0",
"metalsmith-yearly-pagination": "2.0.0",
"ncp": "2.0.0",
"node-version-data": "1.0.1",
"octonode": "0.9.0",
"request": "2.83.0",
"require-dir": "0.3.2",
"semver": "5.4.1",
"st": "1.2.2",
"strftime": "0.10.0"
},
"devDependencies": {
"faucet": "^0.0.1",
"htmllint-cli": "^0.0.6",
"nock": "^9.0.2",
"pre-commit": "^1.1.2",
"proxyquire": "^1.7.4",
"standard": "^10.0.0",
"stylint": "^1.3.8",
"tape": "^4.5.1"
}
}