-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
45 lines (45 loc) · 1.09 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
{
"name": "zap",
"version": "2.1.1",
"description": "Lightweight HTTP server framework for Node",
"repository": {
"type": "git",
"url": "https://github.com/jacobwgillespie/zap.git"
},
"homepage": "https://github.com/jacobwgillespie/zap",
"funding": {
"type": "GitHub",
"url": "https://github.com/sponsors/jacobwgillespie"
},
"author": {
"name": "Jacob Gillespie",
"email": "[email protected]"
},
"license": "MIT",
"main": "./dist/zap.js",
"types": "./dist/zap.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "tsc",
"clean": "rm -rf dist",
"fmt": "prettier --write .",
"fmt:check": "prettier --check .",
"type-check": "tsc --noEmit"
},
"dependencies": {
"content-type": "^1.0.4",
"path-to-regexp": "^6.2.0",
"raw-body": "^2.5.1"
},
"devDependencies": {
"@tsconfig/node14": "^1.0.1",
"@types/content-type": "^1.1.5",
"@types/node": "^16.11.11",
"prettier": "^2.5.1",
"prettier-plugin-organize-imports": "^2.3.4",
"prettier-plugin-pkg": "^0.11.1",
"typescript": "^4.6.2"
}
}