-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
61 lines (61 loc) · 1.46 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
55
56
57
58
59
60
61
{
"name": "redu",
"version": "1.0.1",
"description": "Simple application-level state management for React apps.",
"main": "redu.js",
"directories": {
"example": "examples"
},
"scripts": {
"test": "./node_modules/mocha/bin/mocha --compilers js:babel-core/register ./test/redu.js",
"build": "./node_modules/.bin/webpack"
},
"repository": {
"type": "git",
"url": "git+https://github.com/shaunpersad/redu.git"
},
"keywords": [
"react",
"redux",
"redu",
"state",
"mobx"
],
"author": "Shaun Persad <shaunpersad@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/shaunpersad/redu/issues"
},
"babel": {
"presets": [
"stage-3",
"latest"
]
},
"homepage": "https://github.com/shaunpersad/redu#readme",
"devDependencies": {
"babel-core": "^6.26.0",
"babel-loader": "^7.1.1",
"babel-preset-es2015": "^6.24.1",
"babel-preset-latest": "^6.24.1",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-3": "^6.24.1",
"babel-register": "^6.26.0",
"chai": "^4.1.1",
"enzyme": "^2.9.1",
"lodash.debounce": "^4.0.8",
"lodash.isequal": "^4.5.0",
"mocha": "^3.5.0",
"react": "^15.6.1",
"react-dom": "^15.6.1",
"react-test-renderer": "^15.6.1",
"webpack": "^3.3.0",
"whatwg-fetch": "^2.0.3"
},
"dependencies": {
"prop-types": "^15.5.10"
},
"peerDependencies": {
"react": "^0.14.0 || ^15.0.0-0 || ^16.0.0-0"
}
}