-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.15 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.15 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
42
43
44
45
46
47
48
{
"name": "react-central-state",
"version": "1.0.30",
"description": "Easy-to-use global state for react",
"main": "./dist/index.js",
"publish:npm": "rm -rf dist && mkdir dist && babel src/components -d dist --copy-files",
"scripts":{
"build":"rm -rf dist && mkdir dist && babel src -d dist --copy-files"
},
"repository": {
"type": "git",
"url": "git+https://github.com/GreenStage/react-central-state.git"
},
"babel": {
"presets": [
"@babel/preset-react"
]
},
"keywords": [
"react",
"reactjs",
"react-component",
"central",
"state",
"global",
"store",
"state management"
],
"author": "Eduardo Gomes <technikome@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/GreenStage/react-central-state/issues"
},
"homepage": "https://github.com/GreenStage/react-central-state#readme",
"peerDependencies": {
"react": "^16.4.0"
},
"devDependencies": {
"@babel/cli": "^7.7.4",
"@babel/core": "^7.0.0",
"@babel/preset-env": "^7.0.0",
"@babel/preset-react": "^7.7.4",
"babel-core": "^7.0.0-bridge.0"
},
"dependencies": {
"react": "^16.8.6"
}
}