-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
executable file
·124 lines (124 loc) · 3.22 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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
{
"name": "@fabrix/spool-express",
"version": "1.6.9",
"description": "Spool Express - Binds the routes compiled in spool-router to an Express 4 Server.",
"homepage": "https://fabrix.app",
"author": {
"name": "Scott Wyatt",
"email": "scottwyatt86@gmail.com",
"url": "https://github.com/scott-wyatt"
},
"contributors": [
{
"name": "Scott Wyatt",
"email": "scottwyatt86@gmail.com",
"url": "https://github.com/scott-wyatt"
},
{
"name": "Jimmy Aumard",
"url": "https://github.com/jaumard"
}
],
"keywords": [
"fabrix",
"express",
"express4",
"express5",
"fabrix-app",
"expressjs",
"webserver",
"spool"
],
"scripts": {
"release": "standard-version",
"build": "tsc -p ./lib/tsconfig.release.json",
"lint": "tslint -p ./lib",
"watch": "tsc -w -p ./lib/tsconfig.release.json",
"test": "npm run clean && npm run lint && npm run build && nyc mocha",
"prepublishOnly": "npm run compile",
"compile": "npm run clean && npm run build",
"clean": "rm -rf dist"
},
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"files": [
"dist",
"archetype"
],
"pre-commit": [
"test"
],
"dependencies": {
"@hapi/boom": "^8.0.1",
"@hapi/joi": "15.1.1",
"body-parser": "^1.19.0",
"compression": "^1.7.4",
"consolidate": "^0.15.0",
"cookie-parser": "^1.4.4",
"cors": "^2.8.5",
"express-session": "^1.17.0",
"helmet": "^3.21.1",
"lodash": "^4.17.15",
"method-override": "^3.0.0",
"methods": "^1.1.2"
},
"devDependencies": {
"@fabrix/fabrix": "^1.6.4",
"@fabrix/lint": "^1.0.0-alpha.3",
"@fabrix/spool-errors": "^1.6.1",
"@fabrix/spool-i18n": "^1.5.1",
"@fabrix/spool-joi": "^1.6.3",
"@fabrix/spool-router": "^1.6.4",
"@fabrix/spool-sequelize": "^1.6.17",
"@fabrix/spool-tapestries": "^1.6.0",
"@types/body-parser": "^1.17.0",
"@types/compression": "0.0.36",
"@types/cookie-parser": "^1.4.1",
"@types/cors": "^2.8.4",
"@types/express": "^4.16.1",
"@types/express-session": "^1.15.10",
"@types/lodash": "^4.14.109",
"@types/method-override": "0.0.31",
"@types/methods": "^1.1.0",
"@types/mkdirp": "^0.5.2",
"@types/node": "~10.3.4",
"boom": "^7.2.0",
"express": "^4.16.4",
"npm": "^5.7.1",
"mocha": "^6",
"nyc": "^14.1.0",
"pg": "^6.4.2",
"pre-commit": "^1.2.2",
"pug": "^2.0.1",
"source-map-support": "^0.5.13",
"standard-version": "^7.0.0",
"smokesignals": "^3",
"sqlite3": "^4.0.2",
"supertest": "^4.0.2",
"tslib": "~1.9.0",
"tslint": "~5.14.0",
"tslint-microsoft-contrib": "~6.1.0",
"tsutils": "~3.9.1",
"typedoc": "^0.15.0",
"typedoc-plugin-markdown": "^2.2.7",
"typescript": "~3.3.4000"
},
"peerDependencies": {
"@fabrix/fabrix": "^1.6.4",
"@fabrix/spool-joi": "^1.6.3",
"@fabrix/spool-router": "^1.6.4",
"@fabrix/spool-errors": "^1.6.1",
"@fabrix/spool-i18n": "^1.6.0"
},
"engines": {
"node": ">= 7.6.0"
},
"repository": {
"type": "git",
"url": "git@github.com:fabrix-app/spool-express.git"
},
"bugs": {
"url": "https://github.com/fabrix-app/spool-express/issues"
},
"license": "MIT"
}