forked from reactjs/react-docgen
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
57 lines (57 loc) · 1.38 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
51
52
53
54
55
56
57
{
"name": "react-docgen",
"version": "2.0.0",
"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"
},
"main": "dist/main.js",
"scripts": {
"watch": "babel src/ --out-dir dist/ --watch",
"build": "rm -rf dist/ && babel src/ --out-dir dist/",
"prepublish": "npm run build",
"test": "jest"
},
"keywords": [
"react",
"documentation-generation"
],
"author": "Felix Kling",
"license": "BSD-3-Clause",
"dependencies": {
"async": "^0.9.0",
"babel-runtime": "^5.7.0",
"babylon": "~5.8.3",
"node-dir": "^0.1.6",
"nomnom": "^1.8.1",
"recast": "^0.10.31"
},
"devDependencies": {
"babel": "^5.6.23",
"babel-jest": "^5.3.0",
"es6-promise": "^2.0.1",
"jest-cli": "^0.4.0",
"rimraf": "^2.3.2",
"temp": "^0.8.1"
},
"jest": {
"preprocessCachingDisabled": true,
"scriptPreprocessor": "node_modules/babel-jest",
"setupTestFrameworkScriptFile": "tests/setupTestFramework.js",
"testPathDirs": [
"bin",
"src"
],
"unmockedModulePathPatterns": [
"tests/utils",
"recast",
"babel",
"babylon"
]
}
}