forked from hoangvvo/next-connect
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
54 lines (54 loc) · 1.28 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
53
54
{
"name": "next-connect",
"version": "0.12.2",
"description": "The method routing and middleware layer for Next.js (and many others)",
"keywords": [
"javascript",
"nextjs",
"middleware",
"router",
"connect"
],
"type": "module",
"main": "dist/index.cjs",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"exports": {
".": {
"require": "./dist/index.cjs",
"import": "./dist/index.js"
}
},
"sideEffects": false,
"scripts": {
"lint": "eslint src -c .eslintrc --ext js",
"test": "c8 mocha",
"build": "bundt && cp src/index.d.ts dist",
"prepublishOnly": "npm run test && npm run build",
"coverage": "c8 report --reporter=text-lcov > coverage.lcov"
},
"repository": {
"type": "git",
"url": "git+https://github.com/hoangvvo/next-connect.git"
},
"author": "Hoang Vo (https://www.hoangvvo.com)",
"bugs": {
"url": "https://github.com/hoangvvo/next-connect/issues"
},
"homepage": "https://github.com/hoangvvo/next-connect#readme",
"license": "MIT",
"devDependencies": {
"@types/node": "^17.0.14",
"bundt": "^1.1.5",
"c8": "^7.11.0",
"eslint": "^8.8.0",
"mocha": "^9.2.0",
"supertest": "^6.2.2"
},
"dependencies": {
"trouter": "^3.2.0"
}
}