-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
77 lines (77 loc) · 2.01 KB
/
package.json
File metadata and controls
77 lines (77 loc) · 2.01 KB
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
{
"name": "react-docgen-typescript-cli",
"version": "2.0.0",
"description": "A CLI tool",
"main": "src/index.js",
"scripts": {
"test": "jest",
"pretest:cli": "shx rm -rf test/actual",
"test:cli": "node ./bin/react-docgen-typescript-cli.js --config test/tsconfig.json test/*.tsx -d test/actual && node test/assert.js",
"lint": "eslint 'src/**/*' 'bin/**/*'",
"version": "npm-run-all -p lint test"
},
"bin": "./bin/react-docgen-typescript-cli.js",
"keywords": [
"react-docgen",
"react-docgen-typescript",
"cli"
],
"author": "Dennis Thompson",
"license": "MIT",
"devDependencies": {
"@djthoms/eslint-config": "^3.0.0",
"@djthoms/prettier-config": "^2.0.0",
"@types/react": "^16.9.46",
"eslint": "^7.7.0",
"husky": "^4.2.5",
"jest": "^26.4.2",
"npm-run-all": "^4.1.5",
"prettier": "^2.0.5",
"react": "^16.13.1",
"react-docgen-typescript": "^1.20.2",
"shx": "^0.3.2",
"typescript": "^4.0.2"
},
"peerDependencies": {
"react-docgen-typescript": "^1.20.0",
"@types/react": "^16.9.0",
"typescript": ">=3.7.3"
},
"dependencies": {
"chalk": "^4.1.0",
"glob": "^7.1.6",
"mkdirp": "^1.0.3",
"yargs": "^16.0.0"
},
"husky": {
"hooks": {
"pre-push": "npm test"
}
},
"engines": {
"node": ">=9.0.0"
},
"eslintConfig": {
"env": {
"es2020": true,
"node": true,
"jest": true
},
"extends": [
"@djthoms/eslint-config"
]
},
"prettier": "@djthoms/prettier-config",
"jest": {
"collectCoverage": true,
"coverageReporters": [
"text",
"html"
],
"collectCoverageFrom": [
"**/*.js",
"!**/node_modules/**"
],
"coverageDirectory": "<rootDir>/coverage"
}
}