-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
51 lines (51 loc) · 1.23 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": "react-spawn-x",
"version": "1.2.2",
"description": "react connector for spawn-x. (Reactive management for javaScript applications)",
"author": "AlexPlex",
"license": "MIT",
"main": "./lib/react-spawn-x.umd.js",
"typings": "./index.d.ts",
"homepage": "https://github.com/atellmer/react-spawn-x",
"scripts": {
"build": "npm run build:dev && npm run build:prod",
"build:dev": "webpack",
"build:prod": "set WEBPACK_ENV=build:prod&& webpack",
"dev": "set WEBPACK_ENV=dev&& webpack --watch"
},
"repository": {
"type": "git",
"url": "git+https://github.com/atellmer/react-spawn-x.git"
},
"keywords": [
"state",
"store",
"app",
"management",
"control",
"predictable",
"live",
"observer",
"reactive",
"redux",
"flux",
"mobx",
"observable",
"rxjs",
"react",
"reactjs"
],
"devDependencies": {
"babel-core": "^6.23.1",
"babel-loader": "^6.3.2",
"babel-plugin-add-module-exports": "^0.2.1",
"babel-preset-es2015": "^6.22.0",
"babel-preset-react": "^6.23.0",
"babel-preset-stage-0": "^6.22.0",
"husky": "^0.13.2",
"webpack": "2.2.0"
},
"peerDependencies": {
"react": "^0.14.0 || ^15.0.0 || ^16.0.0"
}
}