-
Notifications
You must be signed in to change notification settings - Fork 330
/
package.json
65 lines (65 loc) · 1.58 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
62
63
64
65
{
"name": "reflux",
"version": "6.4.1",
"description": "A simple library for uni-directional dataflow application architecture inspired by ReactJS Flux",
"main": "src/index.js",
"scripts": {
"test": "grunt test",
"test:sauce": "grunt karma:sauce",
"benchmark": "node test/benchmarks",
"build": "grunt build"
},
"author": "Mikael Brassman",
"license": "BSD-3-Clause",
"repository": {
"type": "git",
"url": "http://github.com/reflux/refluxjs.git"
},
"bugs": {
"url": "https://github.com/reflux/refluxjs/issues"
},
"keywords": [
"reflux",
"react",
"flux",
"architecture",
"dataflow",
"action",
"event",
"data"
],
"dependencies": {
"eventemitter3": "^1.1.1",
"reflux-core": "^1.0.0"
},
"devDependencies": {
"benchmark": "^1.0.0",
"browserify": "~10.2.3",
"chai": "latest",
"chai-as-promised": "latest",
"es6-promise": "^2.3.0",
"grunt": "^0.4.5",
"grunt-browserify": "3.8.0",
"grunt-cli": "^0.1.13",
"grunt-contrib-jshint": "^0.11.2",
"grunt-contrib-uglify": "^0.5.0",
"grunt-contrib-watch": "^0.6.1",
"grunt-karma": "latest",
"grunt-mocha-test": "~0.12.7",
"karma": "latest",
"karma-browserify": "latest",
"karma-commonjs": "latest",
"karma-mocha": "latest",
"karma-phantomjs-launcher": "latest",
"karma-sauce-launcher": "latest",
"karma-spec-reporter": "latest",
"matchdep": "^0.3.0",
"mocha": "latest",
"q": "^1.0.1",
"react-dom": "^15.0.2",
"sinon": "^1.10.3"
},
"peerDependencies": {
"react": "^15.0.2"
}
}