-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
54 lines (54 loc) · 1.45 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
{
"name": "react-shallow-context",
"version": "1.0.1",
"description": "A speed optimization for a Context API",
"main": "dist/es5/index.js",
"scripts": {
"test": "ts-react-toolbox test",
"bootstrap": "ts-react-toolbox init",
"dev": "ts-react-toolbox dev",
"test:ci": "ts-react-toolbox test --runInBand --coverage",
"test:size": "size-limit",
"build": "ts-react-toolbox build",
"prepublishOnly": "yarn build",
"release": "ts-react-toolbox release",
"lint": "ts-react-toolbox lint",
"static": "ts-react-toolbox publish",
"format": "ts-react-toolbox format",
"analyze": "ts-react-toolbox analyze"
},
"repository": "git+https://github.com/theKashey/react-shallow-context.git",
"bugs": {
"url": "https://github.com/theKashey/react-shallow-context/issues"
},
"homepage": "https://github.com/theKashey/react-shallow-context#readme",
"author": "Anton Korzunov (thekashey@gmail.com)",
"license": "MIT",
"dependencies": {
"shallow-equal": "^1.0.0"
},
"engines": {
"node": ">=8.5.0"
},
"peerDependencies": {
"react": "^16.3.0"
},
"sideEffects": false,
"jsnext:main": "dist/es2015/index.js",
"module": "dist/es2015/index.js",
"types": "dist/es5/index.d.ts",
"files": [
"dist"
],
"keywords": [
"react",
"context",
"observedBits",
"speed"
],
"devDependencies": {
"codecov": "^3.0.3",
"size-limit": "^0.20.1",
"ts-react-toolbox": "^0.1.21"
}
}