forked from nodejs/nodejs.org
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
75 lines (75 loc) · 2.04 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
{
"name": "nodejs.org",
"version": "1.0.0",
"description": "Nodejs.org website",
"homepage": "https://nodejs.org",
"scripts": {
"build": "node build.js",
"serve": "node server.js",
"gzip": "find -E build -type f -regex '.*(html|css|js|xml|json)$' -exec gzip -kf9 {} \\;",
"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": {
"type": "git",
"url": "git+https://github.com/nodejs/nodejs.org.git"
},
"author": "Node.js Website Working Group",
"license": "MIT",
"bugs": {
"url": "https://github.com/nodejs/nodejs.org/issues"
},
"engines": {
"node": ">=4.0.0"
},
"standard": {
"ignore": [
"static/"
]
},
"dependencies": {
"autoprefixer-stylus": "0.9.3",
"changelog-url": "1.0.2",
"cheerio": "0.20.0",
"chokidar": "1.4.3",
"handlebars": "4.0.5",
"html-to-text": "2.1.0",
"js-yaml": "3.6.0",
"junk": "1.0.2",
"map-async": "0.1.1",
"marked": "0.3.5",
"metalsmith": "2.1.0",
"metalsmith-collections": "0.7.0",
"metalsmith-feed": "0.2.0",
"metalsmith-layouts": "1.6.5",
"metalsmith-markdown": "0.2.1",
"metalsmith-metadata": "0.0.4",
"metalsmith-permalinks": "0.5.0",
"metalsmith-prism": "2.2.0",
"metalsmith-stylus": "2.0.0",
"metalsmith-yearly-pagination": "2.0.0",
"ncp": "2.0.0",
"node-geocoder": "3.9.1",
"node-version-data": "1.0.1",
"octonode": "0.7.5",
"request": "2.72.0",
"require-dir": "0.3.0",
"semver": "5.1.0",
"st": "1.1.0",
"strftime": "0.9.2"
},
"devDependencies": {
"faucet": "^0.0.1",
"htmllint-cli": "^0.0.4",
"nock": "^8.0.0",
"pre-commit": "^1.1.2",
"proxyquire": "^1.7.4",
"standard": "^7.0.0",
"stylint": "^1.3.8",
"tape": "^4.5.1"
}
}