-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 1.05 KB
/
Copy pathpackage.json
File metadata and controls
38 lines (38 loc) · 1.05 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
{
"name": "react-context-service",
"version": "1.2.4",
"description": "Inject react context into component via props in a fun way",
"main": "dist/index.js",
"repository": "github:kenkz447/react-context-service",
"scripts": {
"build:before": "rimraf ./dist",
"build": "npm run build:before && tsc",
"test": "jest --coverage --config ./jest.config.json"
},
"keywords": [
"react",
"react-native",
"typescript",
"front-end",
"context"
],
"author": "kenkz447",
"license": "MIT",
"devDependencies": {
"@types/jest": "^23.3.9",
"@types/node": "^10.12.10",
"@types/react": "^16.7.7",
"@types/react-test-renderer": "^16.0.2",
"coveralls": "^3.0.2",
"jest": "^23.6.0",
"react-test-renderer": "^16.6.3",
"rimraf": "^2.6.2",
"ts-jest": "^23.10.5",
"tslint": "^5.11.0",
"tslint-react": "^3.6.0",
"typescript": "^3.1.6"
},
"dependencies": {
"react": "^16.6.3"
}
}