-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
50 lines (50 loc) · 1.2 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
{
"name": "pow",
"version": "0.0.1",
"description": "",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"example/hello-world": "tsup --silent ./examples/hello-world.ts",
"preinstall": "npx only-allow npm",
"postinstall": "patch-package",
"test": "nyc ava",
"build": "tsup --silent ./src/index.ts",
"coverage": "typescript-coverage-report"
},
"author": "Alexis Tyler <[email protected]>",
"license": "MIT",
"devDependencies": {
"@types/node": "^16.3.1",
"@types/node-fetch": "^2.5.11",
"@types/parseurl": "^1.3.1",
"@types/utils-merge": "^0.0.28",
"@types/whatwg-mimetype": "^2.1.1",
"autocannon": "^7.4.0",
"ava": "^3.15.0",
"debug": "^4.3.2",
"node-fetch": "^2.6.1",
"nyc": "^15.1.0",
"patch-package": "^6.4.7",
"ts-node": "^10.1.0",
"tsup": "^4.12.5",
"typescript": "^4.3.5",
"typescript-coverage-report": "^0.6.0"
},
"dependencies": {
"content-type-parser": "^1.0.2",
"uWebSockets.js": "github:uNetworking/uWebSockets.js#v19.3.0",
"whatwg-mimetype": "^2.3.0"
},
"ava": {
"extensions": [
"ts"
],
"require": [
"ts-node/register"
]
}
}