forked from LeanKit-Labs/lux.js
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
111 lines (111 loc) · 2.78 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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
{
"name": "lux.js",
"version": "0.7.3",
"homepage": "https://github.com/LeanKit-Labs/lux.js",
"description": "Flux-based architecture for using ReactJS at LeanKit",
"author": "Jim Cowart",
"repository": {
"type": "git",
"url": "git://github.com/LeanKit-Labs/lux.js.git"
},
"publishConfig": {
"registry": "https://registry.npmjs.org"
},
"contributors": [
{
"name": "Jim Cowart",
"email": "[email protected]",
"url": "http://ifandelse.com"
},
{
"name": "Doug Neiner",
"email": "[email protected]",
"url": "http://code.dougneiner.com"
},
{
"name": "Ryan Niemeyer",
"email": "[email protected]",
"url": "http://knockmeout.net"
},
{
"name": "Alex Robson",
"email": "[email protected]",
"url": "http://nerdventure.io/"
}
],
"main": "./lib/lux.js",
"keywords": [
"react",
"ReactJS",
"flux",
"LeanKit"
],
"scripts": {
"build": "gulp",
"test": "gulp build:es5 && mocha -r spec/helpers/node-setup.js spec",
"coverage": "gulp build:es5 && istanbul cover _mocha -x 'spec/**/*' -- -r spec/helpers/node-setup.js spec/*.spec.js",
"show-coverage": "open ./coverage/lcov-report/index.html"
},
"peerDependencies": {
"babel": "5.x"
},
"dependencies": {
"lodash": "3.x",
"machina": "1.x",
"postal": "1.x"
},
"devDependencies": {
"babel": "5.x",
"babel-loader": "~4.0.0",
"chai": "^2.0.0",
"expect.js": "^0.3.1",
"gulp": "^3.8.8",
"gulp-babel": "~4.0.0",
"gulp-changed": "^1.2.1",
"gulp-header": "^1.0.5",
"gulp-hint-not": "0.0.3",
"gulp-imports": "0.0.3",
"gulp-jscs": "^1.6.0",
"gulp-jshint": "^1.10.0",
"gulp-rename": "^1.2.0",
"gulp-sourcemaps": "^1.1.1",
"gulp-spawn-mocha": "^0.5.2",
"gulp-uglify": "^1.0.1",
"gulp-util": "~3.0.5",
"imports-loader": "^0.6.3",
"istanbul": "^0.3.2",
"jsdom": "^2.0.0",
"jshint-stylish": "^1.0.1",
"karma": "^0.12.24",
"karma-chrome-launcher": "^0.1.5",
"karma-coverage": "^0.2.6",
"karma-firefox-launcher": "^0.1.3",
"karma-mocha": "^0.1.9",
"karma-phantomjs-launcher": "^0.1.4",
"karma-safari-launcher": "^0.1.1",
"karma-sourcemap-loader": "^0.3.0",
"karma-spec-reporter": "0.0.16",
"karma-webpack": "^1.3.1",
"mocha": "^2.1.0",
"react": ">=0.12.2",
"sinon": "~1.11.0",
"sinon-chai": "^2.7.0",
"source-map-loader": "^0.1.3",
"source-map-support": "LeanKit-Labs/node-source-map-support#isbrowser-fix",
"webpack": "^1.4.8",
"webpack-dev-server": "^1.6.5"
},
"engines": {
"node": ">=0.10.0"
},
"licenses": [
{
"type": "MIT",
"url": "http://opensource.org/licenses/MIT"
}
],
"files": [
"lib",
"LICENSE"
]
}