forked from postlight/lux
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 1018 Bytes
/
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
{
"name": "lux-framework",
"version": "0.0.1-beta.3",
"description": "A MVC style Node.js framework for building lightning fast JSON APIs",
"repository": "https://github.com/postlight/lux",
"main": "dist/index.js",
"bin": {
"lux": "bin/lux"
},
"scripts": {
"start": "lux serve",
"test": "lux test"
},
"author": "Zachary Golba",
"license": "MIT",
"dependencies": {
"ansi-regex": "2.0.0",
"babel-runtime": "6.6.1",
"bluebird": "3.3.4",
"colors": "1.1.2",
"commander": "2.9.0",
"inflection": "1.9.0",
"moment": "2.12.0",
"orm": "2.1.30"
},
"devDependencies": {
"babel-core": "6.7.4",
"babel-eslint": "6.0.2",
"babel-plugin-transform-decorators-legacy": "1.3.4",
"babel-plugin-transform-runtime": "6.6.0",
"babel-preset-es2015": "6.6.0",
"babel-preset-stage-1": "6.5.0",
"eslint": "2.7.0",
"gulp": "3.9.1",
"gulp-babel": "6.1.2",
"gulp-eslint": "2.0.0",
"gulp-uglify": "1.5.3",
"mysql": "2.10.2"
}
}