-
Notifications
You must be signed in to change notification settings - Fork 506
/
Copy pathpackage.json
55 lines (55 loc) · 1.37 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
{
"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.5.0",
"cors": "^2.7.1",
"express": "^4.13.3",
"handlebars-helper-equal": "^1.0.0",
"harp": "~0.24.1",
"hbs": "^4.0.0",
"html-frontmatter": "^1.5.1",
"js-beautify": "^1.6.11",
"leven": "^2.0.0",
"lodash": "^4.11.1",
"marky-markdown": "~11.3.2",
"strftime": "^0.10.0",
"walkdir": "0.0.12"
},
"devDependencies": {
"cheerio": "~1.0.0-rc.2",
"mansplain": "^3.0.0",
"mocha": "~4.0.1",
"nodemon": "^1.8.1",
"standard": "^10.0.1",
"supertest": "^3.0.0"
}
}