-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
58 lines (58 loc) · 1.22 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
{
"name": "react-providers",
"version": "2.0.2",
"description": "Library for creating your own business logic using react.context",
"main": "./lib",
"scripts": {
"test": "jest",
"build": "yarn jest && tsc -p ./",
"start": "npm run build -- -w",
"size": "yarn build && size-limit"
},
"size-limit": [
{
"limit": "2Kb",
"path": "./lib/index.js"
},
{
"limit": "2Kb",
"path": "./lib/components/use.js"
}
],
"keywords": [
"context",
"react",
"react-context",
"context-provider",
"provider",
"consumers",
"react-context-api",
"state-management",
"state-manager"
],
"author": "Nikita Mostovoy (nik.mostovoy@gmail.com)",
"license": "MIT",
"dependencies": {
"hoist-non-react-statics": "^3.0.1"
},
"peerDependencies": {
"react": ">= 16.3.0"
},
"files": [
"lib",
"src"
],
"devDependencies": {
"@types/jest": "^23.3.2",
"@types/react": "^16.4.14",
"enzyme": "^3.6.0",
"enzyme-adapter-react-16": "^1.5.0",
"enzyme-to-json": "^3.3.4",
"jest": "^24.9.0",
"react": "^16.4.1",
"react-dom": "^16.5.2",
"size-limit": "^0.21.0",
"ts-jest": "^23.10.3",
"typescript": "^3.0.3"
}
}