-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
51 lines (51 loc) · 1.16 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
{
"name": "@jtarchie/some-router",
"version": "0.0.4",
"description": "router for http requests that is platform agnostic",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist/",
"LICENSE",
"package.json",
"README.md",
"yarn.lock"
],
"license": "MIT",
"devDependencies": {
"@swc/core": "^1.3.92",
"@swc/jest": "^0.2.29",
"@types/benchmark": "^2.1.3",
"@types/express": "^4.17.18",
"@types/jest": "^29.5.5",
"benny": "^3.7.1",
"express": "^4.18.2",
"find-my-way": "^8.2.2",
"jest": "^29.7.0",
"regenerator-runtime": "^0.14.0",
"supertest": "^6.3.3",
"ts-node": "^10.9.1",
"typescript": "^5.2.2"
},
"scripts": {
"bench": "ts-node src/benchmark.ts",
"build": "npx tsc",
"fmt": "deno fmt src/ *.md *.json",
"lint": "deno lint --rules-exclude=ban-types src/",
"prepublishOnly": "yarn build",
"test": "yarn run lint && yarn run fmt && npx jest"
},
"jest": {
"transform": {
"^.+\\.(t|j)sx?$": [
"@swc/jest",
{
"jsc": {
"target": "es5"
},
"sourceMaps": true
}
]
}
}
}