-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
56 lines (56 loc) · 1.38 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
{
"name": "fluxapp",
"version": "0.1.8",
"description": "A isomorphic flux app design implementation",
"main": "lib/index.js",
"scripts": {
"test": "mocha test/server && ./node_modules/karma/bin/karma start",
"doc": "node_modules/doxx/bin/doxx --source lib --target docs"
},
"keywords": [
"isomorphic",
"flux"
],
"author": {
"name": "Jason Brumwell"
},
"contributors": [
"Michal Kawalec <[email protected]>"
],
"repository" : {
"type" : "git",
"url" : "https://github.com/colonyamerican/fluxapp.git"
},
"license": "MIT",
"dependencies": {
"bluebird": "^2.9.8",
"lodash": "^2.4.1",
"node-uuid": "^1.4.3",
"route-parser": "0.0.3",
"seamless-immutable": "^2.3.1"
},
"devDependencies": {
"chai": "^1.10.0",
"doxx": "^1.2.5",
"esprima-fb": "^8001.2001.0-dev-harmony-fb",
"jscs": "^1.9.0",
"jscs-jsdoc": "^0.4.0",
"json-loader": "^0.5.1",
"jsx-loader": "^0.12.1",
"karma": "^0.12.24",
"karma-chrome-launcher": "^0.1.5",
"karma-mocha": "^0.1.9",
"karma-sinon-chai": "^0.2.0",
"karma-sourcemap-loader": "^0.3.0",
"karma-spec-reporter": "0.0.16",
"karma-webpack": "^1.3.1",
"mocha": "^2.0.1",
"null-loader": "^0.1.0",
"sinon": "^1.12.1",
"webpack": "^1.4.13",
"webpack-dev-server": "^1.6.5"
},
"peerDependencies": {
"react": "^0.12.0 || ^0.13.0"
}
}