-
-
Notifications
You must be signed in to change notification settings - Fork 30
/
Copy pathpackage.json
67 lines (67 loc) · 1.49 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
{
"name": "react-wait",
"version": "0.3.0",
"description": "Complex Loader Management for React Applications",
"main": "./dist/react-wait.js",
"module": "./dist/react-wait.esm.js",
"files": [
"dist"
],
"scripts": {
"build": "microbundle --jsx React.createElement",
"test": "jest --verbose && codecov"
},
"repository": {
"type": "git",
"url": "git+https://github.com/f/react-wait.git"
},
"keywords": [
"react",
"wait",
"use",
"hooks",
"vue-wait",
"loading",
"loader"
],
"author": "Fatih Kadir Akın <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/f/react-wait/issues"
},
"peerDependencies": {
"react": ">=16.7.0-alpha"
},
"devDependencies": {
"babel-core": "^6.26.3",
"babel-jest": "^23.6.0",
"babel-preset-env": "^1.7.0",
"babel-preset-react": "^6.24.1",
"codecov": "^3.1.0",
"enzyme": "^3.7.0",
"enzyme-adapter-react-16": "^1.6.0",
"husky": "^1.1.3",
"jest": "^23.6.0",
"lint-staged": "^8.0.4",
"microbundle": "^0.7.0",
"react": ">=16.7.0-alpha",
"react-dom": ">=16.7.0-alpha",
"regenerator-runtime": "^0.12.1"
},
"homepage": "https://github.com/f/react-wait#readme",
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,json,css,md}": [
"prettier --write src",
"git add"
]
},
"jest": {
"coverageDirectory": "./coverage/",
"collectCoverage": true
}
}