-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathpackage.json
58 lines (58 loc) · 1.31 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
{
"name": "react-chaos",
"version": "0.1.0",
"description": "Chaos engineering for your React apps.",
"license": "MIT",
"repository": "jchiatt/react-chaos",
"author": "jchiatt",
"homepage": "https://github.com/jchiatt/react-chaos",
"bugs": "https://github.com/jchiatt/react-chaos/issues",
"bin": "",
"main": "dist/index.js",
"umd:main": "dist/react-chaos.umd.production.js",
"module": "dist/react-chaos.es.production.js",
"typings": "dist/index.d.ts",
"engines": {
"node": ">= 8"
},
"scripts": {
"start": "tsdx watch",
"build": "tsdx build",
"test": "tsdx test --env=jsdom"
},
"files": [
"dist",
"README.md",
"LICENSE"
],
"peerDependencies": {
"react": ">=16"
},
"devDependencies": {
"@types/jest": "^24.0.15",
"@types/react": "^16.8.20",
"@types/react-dom": "^16.8.4",
"husky": "^2.4.1",
"prettier": "^1.18.2",
"pretty-quick": "^1.11.1",
"react": "^16.8.6",
"react-dom": "^16.8.6",
"tsdx": "^0.6.1",
"tslib": "^1.10.0",
"typescript": "^3.5.2",
"babel-jest": "^24.8.0",
"jest": "^24.8.0",
"jest-dom": "^3.4.0"
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged"
}
},
"prettier": {
"printWidth": 80,
"semi": true,
"singleQuote": true,
"trailingComma": "es5"
}
}