-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
59 lines (59 loc) · 1.39 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
55
56
57
58
59
{
"name": "express-super-router",
"description": "Create an advanced express api with ease!",
"version": "1.0.0",
"main": "dist/index.js",
"directories": {
"example": "examples",
"test": "test"
},
"scripts": {
"build": "tsc -p .",
"test": "jest",
"watch": "jest --watch",
"bundle": "ts-node ./scripts/bundle",
"examples": "ts-node scripts/examples"
},
"repository": {
"type": "git",
"url": "git+https://github.com/JeroenoBoy/express-super-router.git"
},
"keywords": [
"NodeJS",
"express-super-router",
"route",
"router",
"express",
"expressJS",
"routerJS",
"routeJS"
],
"author": "Jeroeno_Boy",
"license": "MIT",
"bugs": {
"url": "https://github.com/JeroenoBoy/express-super-router/issues"
},
"homepage": "https://github.com/JeroenoBoy/express-super-router#readme",
"devDependencies": {
"@types/express": "^4.17.13",
"@types/jest": "^27.0.1",
"@types/morgan": "^1.9.2",
"@types/node": "^14.14.10",
"@types/nodemon": "^1.19.1",
"@types/supertest": "^2.0.11",
"chalk": "^4.1.2",
"enquirer": "^2.3.6",
"express": "^4.17.1",
"jest": "^27.0.6",
"morgan": "^1.10.0",
"nodemon": "^2.0.6",
"supertest": "^6.1.6",
"ts-jest": "^27.0.5",
"ts-node": "^9.1.0",
"typescript": "^4.1.2",
"commander": "^8.1.0"
},
"peerDependencies": {
"express": "*"
}
}