-
Notifications
You must be signed in to change notification settings - Fork 114
/
Copy pathpackage.json
61 lines (61 loc) · 1.63 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": "flummox",
"version": "3.6.9",
"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 <[email protected]>",
"contributors": [
"Dmitri Voronianski <[email protected]>"
],
"license": "MIT",
"devDependencies": {
"babel-cli": "^6.3.15",
"babel-core": "^6.3.15",
"babel-eslint": "^4.1.6",
"babel-loader": "^6.2.0",
"babel-plugin-transform-es3-member-expression-literals": "^6.3.13",
"babel-plugin-transform-es3-property-literals": "^6.3.13",
"babel-preset-es2015-loose": "^6.1.3",
"babel-preset-react": "^6.3.13",
"babel-preset-stage-0": "^6.3.13",
"babel-runtime": "^5.8.34",
"chai": "~1.10.0",
"chai-as-promised": "4.3.0",
"es6-promise": "~2.0.1",
"eslint": "^1.10.2",
"istanbul": "0.3.7",
"jsdom": "~4.0.5",
"mocha": "2.2.1",
"react": "^0.14.3",
"react-addons-test-utils": "^0.14.3",
"react-dom": "^0.14.3",
"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": "^4.0.1",
"prop-types": "^15.5.10",
"uniqueid": "~0.1.0"
}
}