-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
51 lines (51 loc) · 1.14 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
{
"name": "statorgfc",
"version": "0.1.6",
"description": "a JavaScript library for state management of JavaScript apps, with built-in support for React Components.",
"main": "build/statorgfc.js",
"directories": {},
"scripts": {
"test": "jest --no-cache",
"build": "prettier src/** --write && babel src -d build"
},
"babel": {
"presets": [
"es2015",
"react"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/cs01/statorgfc.git"
},
"author": "[email protected]",
"license": "MIT",
"bugs": {
"url": "https://github.com/cs01/statorgfc/issues"
},
"homepage": "https://github.com/cs01/statorgfc",
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.26.0",
"babel-loader": "^7.1.2",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"jest": "^22.3.0",
"prettier": "^1.11.1",
"react-test-renderer": "^16.2.0"
},
"peerDependencies": {
"immer": "~1.2.0",
"react": "*"
},
"keywords": [
"state",
"store",
"stator",
"statorgfc",
"javascript",
"react",
"webapp",
"redux"
]
}