-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.2 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
{
"name": "react-declarative-fetch",
"version": "1.0.4",
"description": "A Declarative Way To Make HTTP Requests in React.",
"main": "./dist/index.js",
"scripts": {
"test": "jest",
"build": "tsc && echo 'Finished building NPM package'"
},
"repository": {
"type": "git",
"url": "git+https://github.com/galElmalah/react-declarative-http.git"
},
"types": "index.d.ts",
"peerDependencies": {
"react": "^15.0.0-0 || ^16.0.0-0"
},
"keywords": [
"react",
"component",
"declarative",
"http",
"request",
"compound",
"abstraction"
],
"author": "Gal Elmalah",
"license": "ISC",
"bugs": {
"url": "https://github.com/galElmalah/react-declarative-http/issues"
},
"homepage": "https://github.com/galElmalah/react-declarative-http#readme",
"devDependencies": {
"@types/enzyme": "^3.9.1",
"@types/enzyme-adapter-react-16": "^1.0.5",
"@types/jest": "^24.0.11",
"@types/react": "^16.8.14",
"enzyme": "^3.9.0",
"enzyme-adapter-react-16": "^1.12.1",
"jest": "^24.7.1",
"react": "^16.8.6",
"react-dom": "^16.8.6",
"ts-jest": "^24.0.2",
"typescript": "^3.4.5"
},
"dependencies": {
"axios": "^0.18.0"
}
}