-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
48 lines (48 loc) · 1.03 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
{
"name": "connext-js",
"version": "1.1.0",
"description": "A middleware and route handling solution for Next.js.",
"main": "./lib/index.js",
"types": "index.d.ts",
"scripts": {
"setup": "npm install",
"build": "tsc lib/index.ts",
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/oslabs-beta/connext-js.git"
},
"authors": "Sara Powers, Eli Gallipoli, Alex Kang, Izumi Sato",
"license": "MIT",
"bugs": {
"url": "https://github.com/oslabs-beta/connext-js/issues"
},
"homepage": "https://github.com/oslabs-beta/connext-js#readme",
"keywords": [
"next-js",
"global",
"middleware",
"express",
"routing",
"router",
"route",
"next",
"API",
"API routes",
"chainable",
"lightweight",
"flexible",
"custom"
],
"dependencies": {
"@types/node": "^13.7.6",
"dirext-js": "^1.0.6"
},
"devDependencies": {
"typescript": "^3.8.2",
"jest": "^25.1.0",
"ts-jest": "^25.2.1"
},
"prepublish": "tsc"
}