-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
99 lines (99 loc) · 1.73 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
{
"name": "trek-static",
"version": "0.3.0",
"description": "Serve static files",
"repository": "trekjs/static",
"license": "MIT",
"author": {
"name": "Fangdun Cai",
"email": "[email protected]",
"url": "fundon.me"
},
"keywords": [
"serve",
"static",
"file",
"cache",
"gzip",
"trek",
"middleware"
],
"main": "lib/index.js",
"engines": {
"node": ">=7.6"
},
"scripts": {
"lint": "xo",
"test": "xo && nyc ava"
},
"dependencies": {
"compressible": "2.0.10",
"destroy": "1.0.4",
"etag": "1.8.0",
"filesize": "3.5.9",
"lru-cache": "4.0.2",
"marko": "4.2.8",
"mime-types": "2.1.15",
"on-finished": "2.3.0",
"range-parser": "1.2.0"
},
"devDependencies": {
"ava": "0.19",
"nyc": "10",
"request": "2",
"request-promise": "4",
"trek-engine": "1",
"xo": "0.18"
},
"ava": {
"concurrency": 5
},
"nyc": {
"reporter": [
"html",
"lcov",
"text"
]
},
"xo": {
"esnext": true,
"envs": [
"node",
"es6"
],
"semicolon": false,
"space": true,
"ignores": [
"views/*.js"
],
"rules": {
"curly": 0,
"import/no-dynamic-require": 0,
"import/no-named-as-default": 0,
"max-lines": 0,
"no-warning-comments": [
"error",
{
"terms": [
"todo",
"fixme"
],
"location": "anywhere"
}
],
"object-curly-spacing": [
"error",
"always",
{
"arraysInObjects": true,
"objectsInObjects": true
}
],
"space-before-function-paren": [
2,
"always"
],
"yoda": 0
}
}
}