-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
62 lines (62 loc) · 1.63 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
{
"name": "@signal-noise/use-api",
"description": "A react hook to load data from a simple api.",
"version": "0.5.0",
"main": "index.js",
"homepage": "https://github.com/signal-noise/use-api#readme",
"repository": {
"type": "git",
"url": "https://github.com/signal-noise/use-api.git"
},
"bugs": {
"url": "https://github.com/signal-noise/use-api/issues"
},
"keywords": [
"react",
"hooks",
"hook",
"react-hook",
"data",
"api",
"loading",
"polling"
],
"scripts": {
"test": "jest",
"test:watch": "jest --watch",
"coverage": "jest --coverage",
"release": "np",
"lint": "npm-run-all --parallel lint:*",
"lint:js": "eslint \"**/*.js\"",
"lint:format": "prettier \"**/*.{js,md}\" --check",
"fix": "npm-run-all --sequential fix:*",
"fix:js": "eslint \"**/*.js\" --fix",
"fix:format": "prettier \"**/*.{js,md}\" --write"
},
"author": "John Chipps-Harding ([email protected])",
"license": "MIT",
"peerDependencies": {
"react": "^16.8.0"
},
"devDependencies": {
"@testing-library/react-hooks": "^3.2.1",
"axios-mock-adapter": "^1.18.1",
"babel-eslint": "^10.1.0",
"eslint": "^6.8.0",
"eslint-plugin-react": "^7.19.0",
"eslint-plugin-react-hooks": "^3.0.0",
"import-sort-cli": "^6.0.0",
"import-sort-parser-babylon": "^6.0.0",
"import-sort-style-module": "^6.0.0",
"jest": "^25.2.7",
"npm-run-all": "^4.1.5",
"prettier": "^2.0.4",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"react-test-renderer": "^16.13.1"
},
"dependencies": {
"axios": "^0.21.1",
"lodash.isequal": "^4.5.0"
}
}