-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 855 Bytes
/
Copy pathpackage.json
File metadata and controls
33 lines (33 loc) · 855 Bytes
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
{
"name": "node-apiblueprint",
"version": "1.1.0",
"description": "Node.js下使用API Blueprint格式写API文档的工作环境",
"scripts": {
"build": "npm run clean && mkdirp build && aglio -i src/index.md -o build/index.html",
"doc": "aglio -i src/index.md -s",
"mock": "drakov -f src/*.md -p 3001",
"clean": "rimraf build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ihahoo/node-apiblueprint.git"
},
"keywords": [
"api",
"blueprint",
"aglio",
"drakov"
],
"author": "Ray Guo",
"license": "MIT",
"bugs": {
"url": "https://github.com/ihahoo/node-apiblueprint/issues"
},
"homepage": "https://github.com/ihahoo/node-apiblueprint#readme",
"devDependencies": {
"aglio": "^2.3.0",
"drakov": "^2.0.1",
"mkdirp": "^1.0.4",
"rimraf": "^3.0.2"
}
}