-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
40 lines (40 loc) · 1020 Bytes
/
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
{
"name": "react-context-global-store",
"version": "1.1.0",
"description": "Global state library For React 16 Context Api",
"private": false,
"main": "./dist/index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "rollup -c --watch",
"prepublish": "rollup -c"
},
"devDependencies": {
"@babel/core": "^7.2.2",
"@babel/preset-react": "^7.0.0",
"@types/node": "^8.0.34",
"@types/react": "^16.8.5",
"babel-core": "^6.26.3",
"rollup": "^1.0.1",
"rollup-plugin-babel": "^4.2.0",
"rollup-plugin-typescript2": "^0.19.2",
"tslib": "^1.9.3",
"typescript": "^3.3.3"
},
"keywords": [
"React",
"State",
"Context",
"global-state"
],
"repository": {
"type": "git",
"url": "git+https://github.com/eleme/react-context-global-store.git"
},
"author": "ELEME Inc",
"homepage": "https://github.com/eleme/react-context-global-store",
"license": "MIT",
"dependencies": {
"react": "^16.8.2"
}
}