forked from netarc/react-partial-store
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
60 lines (60 loc) · 1.42 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
{
"name": "react-partial-store",
"version": "0.1.15",
"description": "A library for unidirectional dataflow architecture with support for fragmented (partial) data",
"files": [
"LICENSE",
"README.md",
"index.js",
"lib/"
],
"main": "lib",
"scripts": {
"test": "grunt test",
"build": "grunt build"
},
"author": "Joshua Hollenbeck",
"license": "BSD-3-Clause",
"repository": {
"type": "git",
"url": "https://github.com/netarc/react-partial-store.git"
},
"keywords": [
"react",
"store",
"partial",
"fragmented"
],
"dependencies": {
"eventemitter3": "^0.1.2",
"axios": "^0.7.0",
"es6-promise": "^3.0.2"
},
"devDependencies": {
"benchmark": "^1.0.0",
"browserify": "~10.2.3",
"chai": "~3.0.0",
"chai-as-promised": "^5.0.0",
"grunt": "^0.4.5",
"grunt-browserify": "3.8.0",
"grunt-contrib-jshint": "0.11.2",
"grunt-contrib-uglify": "^0.5.0",
"grunt-contrib-watch": "^0.6.1",
"grunt-karma": "~0.11.0",
"grunt-mocha-test": "~0.12.7",
"karma": "0.13.15",
"karma-browserify": "^4.2.1",
"karma-commonjs": "0.0.13",
"karma-mocha": "0.2.1",
"karma-phantomjs-launcher": "~0.2.0",
"karma-sauce-launcher": "^0.2.10",
"karma-spec-reporter": "^0.0.19",
"matchdep": "^0.3.0",
"mocha": "~2.2.5",
"nock": "3.5.0",
"sinon": "^1.10.3"
},
"peerDependencies": {
"react": ">=0.12.2"
}
}