-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
46 lines (46 loc) · 1.48 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
{
"name": "react-docify",
"version": "1.0.4",
"description": "A tool to generate markdown documentation from source code.",
"main": "lib/index.js",
"scripts": {
"test": "npm run build && ./node_modules/.bin/babel-node ./node_modules/.bin/babel-istanbul cover ./node_modules/.bin/_mocha -- --require should",
"travis": "npm run build && ./node_modules/.bin/babel-node ./node_modules/.bin/babel-istanbul cover ./node_modules/.bin/_mocha --report lcovonly -- --require should",
"dev": "./node_modules/.bin/babel -w src/ -d lib",
"build": "./node_modules/.bin/babel src/ -d lib"
},
"author": "LingyuCoder",
"license": "MIT",
"dependencies": {
"babel-runtime": "^6.6.1",
"capitalize": "^1.0.0",
"lodash": "^4.12.0",
"markdown-tableify": "^0.0.4",
"react-docer": "^1.1.6"
},
"devDependencies": {
"babel-cli": "^6.6.5",
"babel-core": "^6.7.2",
"babel-eslint": "^6.0.2",
"babel-istanbul": "^0.7.0",
"babel-plugin-add-module-exports": "^0.1.2",
"babel-plugin-transform-runtime": "^6.6.0",
"babel-polyfill": "^6.7.2",
"babel-preset-es2015": "^6.6.0",
"babel-preset-stage-0": "^6.5.0",
"eslint": "^2.8.0",
"mocha": "~2.3.3",
"should": "^8.1.0"
},
"repository": {
"type": "git",
"url": "https://github.com/LingyuCoder/react-docify"
},
"keywords": [],
"bugs": {
"url": "https://github.com/LingyuCoder/react-docify/issues"
},
"publishConfig": {
"registry": "http://registry.npmjs.org/"
}
}