-
Notifications
You must be signed in to change notification settings - Fork 60
/
package.json
90 lines (90 loc) · 2.32 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
{
"name": "lux-framework",
"version": "1.2.0",
"description": "Build scalable, Node.js-powered REST APIs with almost no code.",
"repository": "github:postlight/lux",
"keywords": [
"mvc",
"api",
"lux",
"jsonapi",
"json-api",
"rest",
"framework"
],
"main": "src/index.js",
"bin": {
"lux": "bin/lux"
},
"scripts": {
"build": "rollup -c",
"build:debugger": "rollup -c test/utils/debugger/rollup.config.js",
"clean": "shx rm -rf coverage dist test/test-app/dist",
"codecov": "codecov",
"debugger": "node test/utils/debugger/dist/debug.js",
"flow": "flow check",
"types": "shx rm -rf flow-typed && flow-typed install",
"lint": "remark . && eslint --cache .",
"test": "jest"
},
"author": "Zachary Golba",
"license": "MIT",
"homepage": "https://lux.postlight.com",
"bugs": {
"url": "https://github.com/postlight/lux/issues"
},
"engines": {
"node": ">= 6.0"
},
"dependencies": {
"ansi-regex": "2.1.1",
"babel-eslint": "7.2.3",
"chalk": "1.1.3",
"commander": "2.9.0",
"eslint": "3.19.0",
"fb-watchman": "2.0.0",
"inflection": "1.12.0",
"knex": "0.13.0",
"ora": "1.2.0",
"qs": "6.4.0",
"rollup": "0.41.6",
"rollup-plugin-alias": "1.3.1",
"rollup-plugin-babel": "2.7.1",
"rollup-plugin-eslint": "3.0.0",
"rollup-plugin-json": "2.1.1",
"rollup-plugin-lux": "3.0.0",
"rollup-plugin-node-resolve": "3.0.0",
"source-map-support": "0.4.15"
},
"devDependencies": {
"babel-core": "6.24.1",
"babel-jest": "20.0.3",
"babel-plugin-transform-es2015-modules-commonjs": "6.24.1",
"babel-preset-lux": "2.0.2",
"codecov": "2.2.0",
"eslint-config-airbnb-base": "11.2.0",
"eslint-plugin-flowtype": "2.33.0",
"eslint-plugin-import": "2.2.0",
"eslint-plugin-jest": "20.0.3",
"faker": "4.1.0",
"flow-bin": "0.46.0",
"flow-typed": "2.1.2",
"jest": "20.0.3",
"jest-cli": "20.0.3",
"object.entries": "1.0.4",
"remark-cli": "3.0.1",
"remark-lint": "6.0.0",
"remark-preset-lint-recommended": "2.0.0",
"shx": "0.2.2"
},
"jest": {
"testRegex": "\\.test\\.js$",
"testEnvironment": "node",
"cacheDirectory": "./.jest-cache",
"coveragePathIgnorePatterns": [
"/test/",
"/__tests__/",
"/node_modules/"
]
}
}