forked from reactjs/react-docgen
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 1.79 KB
/
package.json
File metadata and controls
69 lines (69 loc) · 1.79 KB
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
65
66
67
68
69
{
"name": "react-docgen",
"version": "2.20.1",
"description": "A CLI and toolkit to extract information from React components for documentation generation.",
"repository": {
"type": "git",
"url": "https://github.com/reactjs/react-docgen.git"
},
"bugs": "https://github.com/reactjs/react-docgen/issues",
"bin": {
"react-docgen": "bin/react-docgen.js"
},
"files": [
"bin",
"dist",
"PATENTS"
],
"main": "dist/main.js",
"scripts": {
"build": "rimraf dist/ && babel src/ --out-dir dist/ --ignore __tests__,__mocks__",
"lint": "eslint src/ bin/",
"prepublish": "yarn build",
"preversion": "yarn lint",
"test": "jest",
"test:ci": "yarn lint && yarn flow && yarn test --runInBand",
"watch": "yarn build --watch"
},
"keywords": [
"react",
"documentation-generation"
],
"author": "Felix Kling",
"license": "BSD-3-Clause",
"dependencies": {
"async": "^2.1.4",
"babel-runtime": "^6.9.2",
"babylon": "~5.8.3",
"commander": "^2.9.0",
"doctrine": "^2.0.0",
"node-dir": "^0.1.10",
"recast": "^0.12.6"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.26.0",
"babel-eslint": "^8.2.2",
"babel-jest": "^21.2.0",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-env": "^1.6.1",
"babel-preset-flow": "^6.23.0",
"cross-spawn": "^5.0.0",
"eslint": "^4.18.1",
"flow-bin": "^0.59.0",
"jest": "^21.2.1",
"jest-diff": "^21.2.1",
"jest-matcher-utils": "^21.2.1",
"rimraf": "^2.3.2",
"temp": "^0.8.1"
},
"jest": {
"setupTestFrameworkScriptFile": "<rootDir>/tests/setupTestFramework.js",
"roots": [
"bin",
"src"
],
"testRegex": "/__tests__/.*-test\\.js$"
}
}