forked from acdlite/flummox
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.17 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
{
"name": "flummox",
"version": "3.5.0",
"description": "Idiomatic, modular, testable, isomorphic Flux. No singletons required.",
"main": "lib/Flux.js",
"repository": {
"type": "git",
"url": "https://github.com/acdlite/flummox.git"
},
"homepage": "https://github.com/acdlite/flummox/blob/latest/README.md",
"bugs": "https://github.com/acdlite/flummox/issues",
"scripts": {
"test": "make fast-js test",
"prepublish": "npm run test"
},
"keywords": [
"flux",
"isomorphic",
"react",
"reactjs",
"facebook",
"es6"
],
"author": "Andrew Clark <acdlite@me.com>",
"license": "MIT",
"devDependencies": {
"babel": "5.0.6",
"babel-eslint": "2.0.2",
"babel-loader": "5.0.0",
"babel-runtime": "5.0.6",
"chai": "~1.10.0",
"chai-as-promised": "4.3.0",
"es6-promise": "~2.0.1",
"eslint": "~0.18.0",
"istanbul": "0.3.7",
"jsdom": "~4.0.5",
"mocha": "2.2.1",
"react": "0.13.x",
"sinon": "1.14.0",
"source-map-support": "0.2.10",
"webpack": "1.7.3"
},
"dependencies": {
"eventemitter3": "~0.1.6",
"flux": "~2.0.1",
"object-assign": "~2.0.0",
"uniqueid": "~0.1.0"
}
}