-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
57 lines (57 loc) · 1.34 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
{
"name": "echoey",
"version": "1.1.5",
"description": "An imitation of golang web framework echo",
"main": "echo.js",
"types": "echo.d.ts",
"scripts": {
"test": "mocha --reporter spec --bail --check-leaks tests/",
"build": "tsc",
"prettier": "prettier */**/*.ts --ignore-path ./.prettierignore --write"
},
"repository": {
"type": "git",
"url": "git+https://github.com/cooperhsiung/echoey.git"
},
"keywords": [
"echo",
"echoey",
"web"
],
"engines": {
"node": ">=8"
},
"author": "Cooper Hsiung",
"license": "MIT",
"bugs": {
"url": "https://github.com/cooperhsiung/echoey/issues"
},
"homepage": "https://github.com/cooperhsiung/echoey#readme",
"prettier": {
"singleQuote": true
},
"dependencies": {
"accepts": "^1.3.5",
"bytes": "^3.1.0",
"co-body": "^6.0.0",
"compressible": "^2.0.16",
"mime": "^1.6.0",
"mz": "^2.7.0",
"path-to-regexp": "^3.0.0",
"resolve-path": "^1.4.0",
"statuses": "^1.5.0",
"type-is": "^1.6.16",
"vary": "^1.1.2"
},
"devDependencies": {
"@types/accepts": "^1.3.5",
"@types/bytes": "^3.0.0",
"@types/co-body": "0.0.3",
"@types/compressible": "^2.0.0",
"@types/mime": "^1.3.0",
"@types/statuses": "^1.5.0",
"@types/type-is": "^1.6.2",
"@types/vary": "^1.1.0",
"prettier": "^1.16.4"
}
}