-
-
Notifications
You must be signed in to change notification settings - Fork 23
/
Copy pathpackage.json
66 lines (66 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
63
64
65
66
{
"name": "react-fake-props",
"version": "1.1.0",
"description": "Automatically generate fake props for your React tests",
"keywords": [
"react",
"enzyme",
"test",
"fake",
"props",
"flow",
"proptypes",
"react-docgen"
],
"main": "lib/index.js",
"repository": "https://github.com/typicode/react-fake-props",
"author": "typicode <[email protected]>",
"license": "MIT",
"scripts": {
"test": "jest && standard",
"build": "rimraf lib && babel src --out-dir lib",
"fix": "prettier **/*.js --write && standard --fix",
"prepublishOnly": "npm run build",
"postversion": "git push && git push --tags && npm publish",
"prepare": "husky install"
},
"dependencies": {
"react-docgen": "5.4.0"
},
"files": [
"lib"
],
"devDependencies": {
"@babel/cli": "^7.14.5",
"@babel/core": "^7.14.6",
"@babel/preset-env": "^7.14.5",
"@babel/preset-flow": "^7.14.5",
"@babel/preset-react": "^7.14.5",
"@babel/preset-typescript": "^7.14.5",
"babel-eslint": "^10.0.1",
"babel-jest": "^27.0.2",
"eslint": "^7.28.0",
"husky": "^6.0.0",
"jest": "^27.0.4",
"prettier": "^1.15.2",
"react": "^17.0.2",
"rimraf": "^3.0.2",
"standard": "16.0.3",
"ts-jest": "^27.0.3",
"typescript": "^4.3.2"
},
"peerDependencies": {
"react": "*"
},
"jest": {
"testURL": "http://localhost/"
},
"standard": {
"parser": "babel-eslint",
"env": "jest",
"ignore": [
"fixtures/flow/",
"fixtures/typescript/"
]
}
}