-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
44 lines (44 loc) · 1.12 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
{
"name": "use-suspender",
"version": "0.4.2",
"description": "Execute asynchronous actions with React.Suspense",
"keywords": [
"react-suspense",
"suspense",
"hooks",
"react-hooks"
],
"main": "use-suspender",
"repository": "octet-stream/use-suspender",
"author": "Nick K. <[email protected]>",
"license": "MIT",
"private": false,
"scripts": {
"size": "size-limit",
"staged": "lint-staged",
"coverage": "nyc ava",
"test": "ava",
"ci": "nyc npm test && nyc report --reporter=lcov && node_modules/.bin/codecov"
},
"devDependencies": {
"@octetstream/eslint-config": "4.0.0",
"@size-limit/preset-small-lib": "4.4.5",
"@testing-library/react-hooks": "3.2.1",
"ava": "3.7.0",
"codecov": "3.6.5",
"eslint": "6.8.0",
"eslint-plugin-ava": "10.2.0",
"eslint-plugin-markdown": "1.0.2",
"eslint-plugin-react": "7.19.0",
"husky": "4.2.5",
"lint-staged": "10.1.3",
"nyc": "15.0.1",
"react": "16.13.1",
"react-test-renderer": "16.13.1",
"sinon": "9.0.2",
"size-limit": "4.4.5"
},
"dependencies": {
"fast-deep-equal": "3.1.1"
}
}