forked from reactjs/react-docgen
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
62 lines (62 loc) · 1.53 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
58
59
60
61
62
{
"name": "react-docgen",
"version": "2.8.2",
"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/ --ignore __tests__,__mocks__",
"prepublish": "npm run build",
"test": "jest"
},
"keywords": [
"react",
"documentation-generation"
],
"author": "Felix Kling",
"license": "BSD-3-Clause",
"dependencies": {
"async": "^1.4.2",
"babel-runtime": "~5.8.25",
"babylon": "~5.8.3",
"doctrine": "^1.2.0",
"node-dir": "^0.1.10",
"nomnom": "^1.8.1",
"recast": "^0.10.41"
},
"devDependencies": {
"babel": "^5.6.23",
"babel-jest": "^5.3.0",
"jest-cli": "^0.8.0",
"rimraf": "^2.3.2",
"temp": "^0.8.1",
"cross-spawn-async": "^2.1.9"
},
"jest": {
"preprocessCachingDisabled": true,
"scriptPreprocessor": "node_modules/babel-jest",
"setupTestFrameworkScriptFile": "tests/setupTestFramework.js",
"testPathDirs": [
"bin",
"src"
],
"testPathIgnorePatterns": [
"/bin/__tests__/example/"
],
"unmockedModulePathPatterns": [
"node_modules",
"tests/utils",
"recast",
"babel",
"babylon"
]
}
}