-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1.11 KB
/
Copy pathpackage.json
File metadata and controls
41 lines (41 loc) · 1.11 KB
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
{
"name": "react-restful",
"version": "1.9.14",
"description": "Another liblary for restful resources management for React app.",
"main": "dist/index.js",
"repository": "github:kenkz447/react-restful",
"scripts": {
"build:before": "rimraf ./dist",
"build": "npm run build:before && tsc",
"test": "jest --coverage --config ./jest.config.json"
},
"keywords": [
"react",
"react-native",
"rest",
"restful",
"typescript",
"request",
"front-end"
],
"author": "kenkz447",
"license": "MIT",
"devDependencies": {
"@types/jest": "^23.3.2",
"@types/node": "^10.11.3",
"@types/react": "^16.4.14",
"@types/react-test-renderer": "^16.0.2",
"coveralls": "^3.0.2",
"jest": "^23.6.0",
"jest-fetch-mock": "^1.6.6",
"react-test-renderer": "^16.5.2",
"rimraf": "^2.6.2",
"ts-jest": "^23.10.2",
"tslint": "^5.11.0",
"tslint-react": "^3.6.0",
"typescript": "^3.1.1"
},
"dependencies": {
"react": "^16.5.2"
}
}