-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
52 lines (52 loc) · 1.37 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
{
"name": "hypr",
"version": "2.4.2",
"description": "A different approach to serverless middleware.",
"main": "./index.js",
"types": "index.d.ts",
"scripts": {
"prepare": "is-ci || pnpx husky install",
"test": "c8 node -r esbuild-register lib/__tests__",
"typecheck": "tsc --noEmit",
"build": "node scripts/build && tsc --emitDeclarationOnly",
"lint": "prettier --check .",
"format": "prettier --write ."
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/sure-thing/hypr.git"
},
"author": "estrattonbailey",
"keywords": [
"serverless",
"middleware"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/sure-thing/hypr/issues"
},
"homepage": "https://github.com/sure-thing/hypr#readme",
"devDependencies": {
"@commitlint/cli": "^15.0.0",
"@commitlint/config-conventional": "^15.0.0",
"@semantic-release/git": "^10.0.1",
"@tsconfig/node12": "^1.0.9",
"@types/statuses": "^2.0.0",
"c8": "^7.10.0",
"commitlint": "^15.0.0",
"esbuild": "^0.13.15",
"esbuild-register": "^3.3.1",
"husky": "^7.0.4",
"is-ci": "^3.0.1",
"lambda-types": "^1.0.0",
"prettier": "^2.5.1",
"semantic-release": "^18.0.1",
"typescript": "^4.5.4",
"uvu": "^0.5.2"
},
"dependencies": {
"deepmerge": "^4.2.2",
"statuses": "^2.0.1",
"sugarcookie": "^1.1.3"
}
}