-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
63 lines (63 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
51
52
53
54
55
56
57
58
59
60
61
62
63
{
"name": "react-docgen-imports-handler",
"version": "1.0.0",
"description": "A handler for react-docgen that finds the names of all imported modules.",
"license": "MIT",
"main": "distribution/index.js",
"scripts": {
"flow": "flow",
"lint": "eslint src/",
"prebuild": "npm test",
"build": "rimraf distribution/ && babel source/ --out-dir distribution/ --ignore **/*.spec.js",
"prepublish": "npm run build",
"pretest": "npm run lint && npm run flow",
"test": "ava"
},
"ava": {
"files": [
"source/**/*.spec.js"
],
"source": [
"source/**/*.js"
],
"require": [
"babel-register"
],
"babel": "inherit"
},
"author": "nerdlabs <nerds@nerdlabs.it>",
"keywords": [
"react",
"documentation-generation",
"react-docgen"
],
"homepage": "https://github.com/nerdlabs/react-docgen-imports-handler#readme",
"bugs": {
"url": "https://github.com/nerdlabs/react-docgen-imports-handler/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/nerdlabs/react-docgen-imports-handler.git"
},
"peerDependencies": {
"react-docgen": "2.x"
},
"dependencies": {
"recast": "0.11.11"
},
"devDependencies": {
"ava": "0.16.0",
"babel-cli": "6.11.4",
"babel-eslint": "6.1.2",
"babel-plugin-syntax-flow": "6.13.0",
"babel-plugin-transform-flow-strip-types": "6.8.0",
"babel-plugin-transform-runtime": "6.12.0",
"babel-preset-es2015": "6.13.2",
"babel-preset-stage-1": "6.13.0",
"babel-register": "^6.11.6",
"eslint": "3.3.0",
"flow-bin": "0.30.0",
"react-docgen": "2.9.1",
"rimraf": "2.5.4"
}
}