-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.28 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.28 KB
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
{
"name": "lt-surge",
"version": "2.2.1",
"description": "A collection of connect middleware to mimic to Harp/Surge serving behaviour",
"repository": "https://github.com/fffunction/lt-surge",
"main": "index.js",
"scripts": {
"test": "xo && nyc ava",
"coveralls": "nyc report --reporter=text-lcov | coveralls",
"prettier": "prettier --single-quote --trailing-comma=es5 --bracket-spacing --tab-width 4 --write ./index.js `find ./test -name '*.js'` `find ./lib -name '*.js'` `find ./layers -name '*.js'`"
},
"xo": {
"extends": "prettier",
"rules": {
"no-var": 0,
"ava/prefer-async-await": 0,
"prefer-arrow-callback": 0,
"func-names": 0,
"object-shorthand": 0
}
},
"keywords": [
"local",
"surge",
"server"
],
"author": "Dan Reeves <danr@fffunction.co>",
"license": "MIT",
"dependencies": {
"escape-html": "1.0.3",
"lodash": "4.17.5",
"mime": "1.4.1",
"parseurl": "1.3.1",
"pause": "0.1.0",
"send": "0.16.0"
},
"devDependencies": {
"ava": "^0.20.0",
"connect": "3.6.0",
"coveralls": "2.11.16",
"eslint-config-prettier": "^2.2.0",
"fn-name": "2.0.1",
"get-port": "3.0.0",
"node-fetch": "1.6.3",
"nyc": "^11.0.3",
"prettier": "^1.5.2",
"xo": "^0.18.2"
}
}