-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 1.1 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
{
"name": "px5",
"version": "0.0.9",
"description": "Patcher for express",
"main": "dist/index.js",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"scripts": {
"release": "npm run build && npm publish",
"build": "tsup index.ts --format cjs,esm --dts",
"test": "echo \"Error: no test specified\" && exit 1",
"lint": "tsc",
"docs": "typedoc index.ts --githubPages false"
},
"repository": {
"type": "git",
"url": "git+https://github.com/TubbyStubby/px5.git"
},
"keywords": [
"monkeypatch",
"express",
"wrap",
"shimmer"
],
"author": "TubbyStubby",
"license": "MIT",
"bugs": {
"url": "https://github.com/TubbyStubby/px5/issues"
},
"homepage": "https://github.com/TubbyStubby/px5#readme",
"devDependencies": {
"@changesets/cli": "^2.26.0",
"@types/express": "^4.17.17",
"@types/shimmer": "^1.0.2",
"express": "^4.18.2",
"tsup": "^6.5.0",
"typedoc": "^0.23.24",
"typescript": "^4.9.5"
},
"dependencies": {
"require-in-the-middle": "^6.0.0",
"shimmer": "^1.2.1"
},
"files": [
"dist"
]
}