forked from jacques/docs.npmjs.com
-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathpackage.json
53 lines (53 loc) · 1.33 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
{
"name": "docs.npmjs.com",
"version": "1.1.0",
"description": "The place where all things npm will one day be documented",
"main": "index.js",
"scripts": {
"start": "node index.js",
"predev": "npm run build",
"dev": "nodemon index.js",
"postinstall": "npm run build",
"build": "bin/build.sh",
"pretest": "npm run build",
"prestart": "npm run build",
"test": "mocha"
},
"repository": {
"type": "git",
"url": "https://github.com/npm/docs.npmjs.com"
},
"keywords": [
"npm",
"docs",
"documentation"
],
"author": "Zeke Sikelianos <[email protected]> (http://zeke.sikelianos.com/)",
"license": "ISC",
"bugs": {
"url": "https://github.com/npm/docs.npmjs.com/issues"
},
"homepage": "https://github.com/npm/docs.npmjs.com",
"dependencies": {
"@npm/policies": "git://github.com/npm/policies",
"cors": "^2.4.2",
"express": "^4.9.5",
"handlebars-helper-equal": "^1.0.0",
"harp": "^0.13.0",
"hbs": "^2.7.0",
"html-frontmatter": "^1.2.1",
"js-beautify": "^1.5.2",
"leven": "^1.0.1",
"lodash": "^2.4.1",
"marky-markdown": "^4.1.3",
"npm": "latest",
"strftime": "^0.8.2",
"walkdir": "0.0.7"
},
"devDependencies": {
"cheerio": "^0.18.0",
"mocha": "^1.21.4",
"nodemon": "^1.3.5",
"supertest": "^0.14.0"
}
}