forked from reflux/refluxjs
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
55 lines (55 loc) · 1.39 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
{
"name": "fluo",
"version": "1.0.3",
"description": "A prototype-based fork of the Reflux data flow library similar to Facebook Flux",
"main": "index.js",
"scripts": {
"test": "grunt test",
"benchmark": "node test/benchmarks",
"build": "grunt build"
},
"author": "Jan Kuča <[email protected]> (http://jankuca.com)",
"contributors": [
"Jan Kuča <[email protected]> (http://jankuca.com)",
"Mikael Brassman"
],
"license": "BSD-3-Clause",
"repository": {
"type": "git",
"url": "http://github.com/jankuca/fluo.git"
},
"keywords": [
"react",
"flux",
"reflux",
"fluo"
],
"dependencies": {
"eventemitter3": "^0.1.2",
"native-promise-only": "^0.7.6-a"
},
"devDependencies": {
"benchmark": "^1.0.0",
"browserify": "^5.11.1",
"chai": "^1.9.1",
"chai-as-promised": "^4.1.1",
"grunt": "^0.4.5",
"grunt-browserify": "^2.1.4",
"grunt-contrib-jshint": "^0.10.0",
"grunt-contrib-uglify": "^0.5.0",
"grunt-contrib-watch": "^0.6.1",
"grunt-mocha-test": "^0.11.0",
"matchdep": "^0.3.0",
"mocha": "^1.21.3",
"q": "^1.0.1",
"sinon": "^1.10.3",
"karma-commonjs": "0.0.11",
"karma": "0.12.23",
"karma-mocha": "^0.1.9",
"karma-phantomjs-launcher": "^0.1.4",
"karma-bro": "^0.7.0",
"karma-spec-reporter": "0.0.13",
"grunt-karma": "^0.9.0",
"karma-sauce-launcher": "^0.2.10"
}
}