forked from jacques/docs.npmjs.com
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
56 lines (56 loc) · 1.38 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
{
"name": "docs",
"version": "1.2.2",
"description": "The place where all things npm are 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": "standard public/js/main.js && mocha"
},
"repository": {
"type": "git",
"url": "https://github.com/npm/docs"
},
"keywords": [
"npm",
"docs",
"documentation"
],
"author": "Zeke Sikelianos <[email protected]> (http://zeke.sikelianos.com/)",
"license": "ISC",
"bugs": {
"url": "https://github.com/npm/docs/issues"
},
"homepage": "https://github.com/npm/docs",
"dependencies": {
"@npm/policies": "git://github.com/npm/policies",
"bluebird": "^3.0.5",
"cors": "^2.7.1",
"express": "^4.13.3",
"handlebars-helper-equal": "^1.0.0",
"harp": "^0.20.1",
"hbs": "^4.0.0",
"html-frontmatter": "^1.5.1",
"js-beautify": "^1.5.10",
"leven": "^2.0.0",
"lodash": "^3.0.0",
"marky-markdown": "^6.0.4",
"npm": "latest",
"strftime": "^0.9.2",
"walkdir": "0.0.11"
},
"devDependencies": {
"cheerio": "^0.20.0",
"mansplain": "^3.0.0",
"mocha": "^2.3.4",
"nodemon": "^1.8.1",
"standard": "^6.0.4",
"supertest": "^1.1.0"
}
}