-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathpackage.json
executable file
·79 lines (79 loc) · 1.96 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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
{
"name": "trailpack-express",
"version": "3.0.0",
"description": "Express.js Trailpack. This pack binds the routes compiled in trailpack-router to a Express 4 or 5 Server.",
"homepage": "https://github.com/trailsjs/trailpack-express#readme",
"author": "Jimmy Aumard <[email protected]>",
"contributors": [
{
"name": "Scott Wyatt",
"email": "[email protected]",
"url": "https://github.com/scott-wyatt"
}
],
"main": "index.js",
"keywords": [
"trails",
"express",
"express4",
"express5",
"trailsjs",
"expressjs",
"webserver",
"trailpack"
],
"dependencies": {
"body-parser": "^1.18.2",
"compression": "^1.7.2",
"consolidate": "^0.15.0",
"cookie-parser": "^1.4.3",
"cors": "^2.8.4",
"express-boom": "^2.0.0",
"express-session": "^1.15.6",
"joi": "^10.4.1",
"lodash": "^4.17.5",
"method-override": "^2.3.10",
"methods": "^1.1.2",
"trailpack": "^3"
},
"devDependencies": {
"boom": "^7.2.0",
"eslint": "^4.18.2",
"eslint-config-trails": "^3",
"express": "^4.16.3",
"mocha": "^5.0.4",
"npm": "^5.7.1",
"pre-commit": "^1.2.2",
"pug": "^2.0.1",
"smokesignals": "^3",
"sqlite3": "^4.0.0",
"supertest": "^3.0.0",
"trailpack-footprints": "^3",
"trailpack-router": "^3",
"trailpack-sequelize": "^3.1.0",
"trails": "^3.2.1"
},
"scripts": {
"test": "eslint . && mocha && npm run testExpress4 && npm run testExpress5",
"testExpress4": "export EXPRESS_VERSION=latest;mocha",
"testExpress5": "export EXPRESS_VERSION=5.0.0-alpha.2;mocha"
},
"pre-commit": [],
"eslintConfig": {
"extends": "trails"
},
"publishConfig": {
"tag": "next"
},
"engines": {
"node": ">= 7.6.0"
},
"repository": {
"type": "git",
"url": "[email protected]:trailsjs/trailpack-express.git"
},
"bugs": {
"url": "https://github.com/trailsjs/trailpack-express/issues"
},
"license": "MIT"
}