-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
64 lines (64 loc) · 1.79 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
{
"name": "meta-doc",
"version": "1.0.9",
"description": "Project documentation generator with support of HTML and Markdown pages.",
"main": "index.js",
"directories": {
"test": "test"
},
"scripts": {
"lint": "./node_modules/.bin/jshint --exclude-path ./.gitignore --reporter=./node_modules/jshint-full-path/index.js .",
"pretest": "npm run-script lint",
"test": "./node_modules/.bin/istanbul cover ./node_modules/.bin/_mocha -- --require should --reporter spec --ui bdd ./test/*",
"posttest": "./node_modules/.bin/istanbul check-coverage",
"doc": "./lib/meta-doc.js -s -w ./doc"
},
"preferGlobal": "true",
"bin": {
"meta-doc": "lib/meta-doc.js"
},
"repository": {
"type": "git",
"url": "https://github.com/metaplatform/meta-doc.git"
},
"keywords": [
"meta-doc",
"doc",
"documentation",
"doc generator",
"api doc",
"api documentation"
],
"author": "META Platform team <www.meta-platform.com>",
"license": "Apache License",
"bugs": {
"url": "https://github.com/metaplatform/meta-doc/issues"
},
"homepage": "https://github.com/metaplatform/meta-doc",
"devDependencies": {
"cheerio": "^0.19.0",
"istanbul": "^0.3.17",
"jshint": "^2.8.0",
"jshint-full-path": "^1.1.1",
"mocha": "^2.2.5",
"mock-fs": "^3.1.0",
"rmdir-recursive": "0.0.1",
"should": "^6.0.3",
"supertest": "^1.0.1"
},
"dependencies": {
"argparse": "^1.0.2",
"cp": "^0.2.0",
"express": "^4.13.3",
"jade": "^1.11.0",
"markdown-it": "^4.4.0",
"markdown-it-attrs": "0.0.3",
"markdown-it-container": "^1.0.0",
"markdown-it-highlightjs": "^2.0.0",
"meta-logger": "^1.0.1",
"meta-shortcodes": "^1.0.3",
"mkdir-p": "0.0.6",
"node-watch": "^0.3.4",
"readline-sync": "^1.2.21"
}
}