-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathpackage.json
executable file
·36 lines (36 loc) · 901 Bytes
/
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
{
"name": "docor",
"version": "0.3.0",
"description": "a tiny cli tool to create elegant readme by manifest files, like `package.json`, `bower.json` and `manifest.json`",
"main": "dist/docor.js",
"author": "turing <o.u.turing@gmail.com>",
"license": "MIT",
"bin": "bin/cli",
"scripts": {
"build": "node_modules/.bin/babel lib --out-dir dist --source-map",
"build": "node_modules/.bin/babel lib --out-dir dist --source-maps --watch",
"example": "cd ./example && ../bin/cli"
},
"repository": {
"type": "git",
"url": "https://github.com/turingou/docor.git"
},
"bugs": {
"url": "https://github.com/turingou/docor/issues"
},
"keywords": [
"readme",
"pkg",
"package",
"package.json",
"document",
"docor"
],
"dependencies":{
"swig": "~1.4.2",
"consoler": "~0.2.0"
},
"devDependencies": {
"babel": "5.1.11"
}
}