-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
57 lines (57 loc) · 1.65 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-imported-proptype-handler",
"version": "1.0.4",
"description": "evaluate imported variables for react-docgen",
"scripts": {
"build": "rimraf dist/ && babel src/ --out-dir dist/ --ignore **/__tests__,**/__mocks__,**/src/types.js",
"lint": "eslint . --report-unused-disable-directives",
"lint-file": "eslint --report-unused-disable-directives",
"fix-lint": "npm run lint -- --fix",
"test": "jest",
"test:ci": "npm run lint && npm run test"
},
"main": "index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/benjroy/react-docgen-imported-proptype-handler.git"
},
"keywords": [],
"author": "benjroy",
"license": "MIT",
"bugs": {
"url": "https://github.com/benjroy/react-docgen-imported-proptype-handler/issues"
},
"homepage": "https://github.com/benjroy/react-docgen-imported-proptype-handler#readme",
"devDependencies": {
"@babel/cli": "^7.2.0",
"@babel/core": "^7.2.0",
"@babel/plugin-transform-runtime": "^7.2.0",
"@babel/preset-env": "^7.2.0",
"babel-core": "^7.0.0-bridge.0",
"babel-eslint": "^10.0.1",
"babel-jest": "^23.6.0",
"eslint": "^5.9.0",
"eslint-config-prettier": "^3.3.0",
"eslint-plugin-prettier": "^3.0.0",
"glob": "^7.1.3",
"jest": "^23.6.0",
"prettier": "^1.15.3",
"react-docgen": "^2.21.0",
"react-router": "^4.3.1",
"recast": "^0.12.9",
"rimraf": "^2.6.2"
},
"jest": {
"roots": [
"src"
],
"testRegex": "/__tests__/.*-test\\.js$"
},
"dependencies": {
"@babel/runtime": "^7.2.0"
},
"peerDependencies": {
"recast": "^0.12.9",
"react-docgen": "^2.21.0"
}
}