forked from zordius/fluxex
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
70 lines (70 loc) · 1.51 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
62
63
64
65
66
67
68
69
70
{
"name": "fluxex",
"version": "0.5.3-1",
"description": "An extended Flux implement to build isomorphic javascript React app.",
"author": "Zordius <[email protected]>",
"contributors": [
{
"name": "Zordius Chen",
"email": "[email protected]"
}
],
"repository": {
"type": "git",
"url": "git://github.com/zordius/fluxex.git"
},
"keywords": [
"flux",
"react",
"context",
"fluxible",
"isomorphic",
"lightweight",
"starter",
"starter kit"
],
"scripts": {
"test": "mocha",
"smoke_test": "gulp smoke_test",
"example_tests": "gulp example_tests",
"build_doc": "gulp build_document",
"watch_doc": "gulp watch_document",
"coverage": "istanbul cover -- _mocha",
"lint": "gulp jscs;jshint"
},
"bin": {
"fluxex_starter": "./starter.sh"
},
"main": "index.js",
"dependencies": {
"eventemitter2": "0.4.14",
"iso-call": "0.0.2"
},
"devDependencies": {
"bluebird": "2.9.24",
"object.assign": "2.0.1",
"gulp": "3.8.11",
"gulp-jscs": "1.6.0",
"gulp-shell": "0.4.1",
"jsdoc": "3.3.0-alpha11",
"semver": "4.3.3",
"chai": "2.2.0",
"istanbul": "0.3.13",
"jshint": "2.7.0",
"mocha": "2.2.4",
"react": "0.13.2",
"sinon": "1.14.1"
},
"engines": {
"node": ">=0.10.0"
},
"bugs": {
"url": "https://github.com/zordius/fluxex/issues"
},
"licenses": [
{
"type": "MIT",
"url": "https://github.com/zordius/fluxex/blob/master/LICENSE.txt"
}
]
}