UNPKG

1.11 kBJSONView Raw
1{
2 "name": "zap",
3 "version": "2.1.1",
4 "description": "Lightweight HTTP server framework for Node",
5 "repository": {
6 "type": "git",
7 "url": "https://github.com/jacobwgillespie/zap.git"
8 },
9 "homepage": "https://github.com/jacobwgillespie/zap",
10 "funding": {
11 "type": "GitHub",
12 "url": "https://github.com/sponsors/jacobwgillespie"
13 },
14 "author": {
15 "name": "Jacob Gillespie",
16 "email": "jacobwgillespie@gmail.com"
17 },
18 "license": "MIT",
19 "main": "./dist/zap.js",
20 "types": "./dist/zap.d.ts",
21 "files": [
22 "dist"
23 ],
24 "scripts": {
25 "build": "tsc",
26 "clean": "rm -rf dist",
27 "fmt": "prettier --write .",
28 "fmt:check": "prettier --check .",
29 "type-check": "tsc --noEmit"
30 },
31 "dependencies": {
32 "content-type": "^1.0.4",
33 "path-to-regexp": "^6.2.0",
34 "raw-body": "^2.5.1"
35 },
36 "devDependencies": {
37 "@tsconfig/node14": "^1.0.1",
38 "@types/content-type": "^1.1.5",
39 "@types/node": "^16.11.11",
40 "prettier": "^2.5.1",
41 "prettier-plugin-organize-imports": "^2.3.4",
42 "prettier-plugin-pkg": "^0.11.1",
43 "typescript": "^4.6.2"
44 }
45}