forked from reactjs/react-docgen
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
79 lines (79 loc) · 2.11 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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
{
"name": "react-docgen",
"version": "6.0.0-alpha.2",
"description": "A CLI and toolkit to extract information from React components for documentation generation.",
"repository": {
"type": "git",
"url": "git+https://github.com/reactjs/react-docgen.git"
},
"bugs": {
"url": "https://github.com/reactjs/react-docgen/issues"
},
"bin": {
"react-docgen": "bin/react-docgen.js"
},
"browser": {
"./src/importer/makeFsImporter.ts": "./src/importer/ignoreImports.ts",
"./dist/importer/makeFsImporter.js": "./dist/importer/ignoreImports.js"
},
"files": [
"bin",
"dist"
],
"engines": {
"node": ">=12.0.0"
},
"main": "dist/main.js",
"typings": "dist/main.d.ts",
"scripts": {
"build": "rimraf dist/ && yarn build:ts",
"build:ts": "tsc",
"lint": "eslint . --ext .js,.ts --report-unused-disable-directives",
"fix": "eslint . --ext .js,.ts --fix --report-unused-disable-directives",
"prepare": "yarn build",
"preversion": "yarn lint",
"start": "cd website && yarn && yarn start",
"test": "yarn build && jest",
"watch": "yarn build --watch"
},
"keywords": [
"react",
"documentation-generation"
],
"author": {
"name": "Felix Kling"
},
"license": "MIT",
"dependencies": {
"@babel/core": "^7.7.5",
"@babel/generator": "^7.12.11",
"ast-types": "^0.14.2",
"commander": "^2.19.0",
"doctrine": "^3.0.0",
"estree-to-babel": "^3.1.0",
"neo-async": "^2.6.1",
"node-dir": "^0.1.10",
"resolve": "^1.17.0",
"strip-indent": "^3.0.0"
},
"devDependencies": {
"@types/cross-spawn": "6.0.2",
"@types/doctrine": "0.0.5",
"@types/jest": "27.5.1",
"@types/rimraf": "3.0.2",
"@typescript-eslint/eslint-plugin": "5.23.0",
"@typescript-eslint/parser": "5.23.0",
"cross-spawn": "7.0.3",
"eslint": "8.15.0",
"eslint-config-prettier": "8.5.0",
"eslint-plugin-prettier": "4.0.0",
"jest": "27.5.1",
"jest-diff": "27.5.1",
"jest-matcher-utils": "27.5.1",
"prettier": "2.6.2",
"rimraf": "3.0.2",
"tempy": "1.0.1",
"ts-jest": "27.1.4",
"typescript": "4.6.4"
}
}