-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 loc) · 1.64 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
{
"name": "restdoc",
"version": "0.1.4",
"description": "Beautiful ui for restful api document",
"main": "lib/index.js",
"jsnext:main": "src/index.jsx",
"scripts": {
"flow": "flow check --show-all-errors --include-warnings",
"eslint": "eslint --ext .jsx,.js ./",
"fix": "eslint --ext .jsx,.js --fix ./",
"prebuild": "rimraf lib",
"build": "babel -d lib src/"
},
"repository": {
"type": "git",
"url": "git+https://github.com/maichong/restdoc.git"
},
"author": "Liang <[email protected]> (https://github.com/liangxingchen)",
"license": "MIT",
"bugs": {
"url": "https://github.com/maichong/restdoc/issues"
},
"homepage": "https://github.com/maichong/restdoc#readme",
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-plugin-syntax-class-properties": "^6.13.0",
"babel-plugin-syntax-export-extensions": "^6.13.0",
"babel-plugin-syntax-flow": "^6.18.0",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-plugin-transform-decorators-legacy": "^1.3.5",
"babel-plugin-transform-es2015-modules-commonjs": "^6.26.2",
"babel-plugin-transform-flow-strip-types": "^6.22.0",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-0": "^6.24.1",
"eslint": "^4.19.1",
"eslint-config-maichong": "^1.0.1",
"flow-bin": "^0.75.0",
"flow-declarations": "^0.4.20",
"rimraf": "^2.6.2"
},
"dependencies": {
"lodash": "^4.17.10",
"marked": "^0.4.0",
"mockjs": "^1.0.1-beta3",
"react": "^16.3.2"
}
}