-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.34 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.34 KB
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
{
"name": "@configit/flummox",
"version": "3.6.1",
"description": "Idiomatic, modular, testable, isomorphic Flux. No singletons required.",
"main": "lib/src/Flux.js",
"repository": {
"type": "git",
"url": "https://github.com/configit/flummox.git"
},
"homepage": "https://github.com/configit/flummox/blob/latest/README.md",
"bugs": "https://github.com/configit/flummox/issues",
"scripts": {
"build": "babel --out-dir lib src/**/*",
"test": "npm run build & mocha --harmony --require lib/src/test/init.js lib/**/*-test.js",
"prepublish": "npm run test"
},
"keywords": [
"flux",
"isomorphic",
"react",
"reactjs",
"facebook",
"es6"
],
"author": "Andrew Clark <acdlite@me.com>",
"license": "MIT",
"devDependencies": {
"babel": "5.4.7",
"babel-eslint": "3.1.10",
"babel-loader": "5.1.3",
"babel-runtime": "5.4.7",
"chai": "~1.10.0",
"chai-as-promised": "4.3.0",
"eslint": "~0.18.0",
"istanbul": "0.3.7",
"jsdom": "~4.0.5",
"mocha": "2.2.1",
"react": "0.14.0",
"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"
},
"publishConfig": {
"registry": "http://nuget.configit.com/npm/npm"
}
}