-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 1.14 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": "@reflet/express-middlewares",
"version": "2.0.0",
"author": "Jeremy Bensimon",
"license": "MIT",
"repository": "https://github.com/jeremyben/reflet/tree/master/express-middlewares",
"description": "Useful express middlewares as decorators",
"keywords": [
"express",
"middlewares",
"decorators",
"typescript",
"framework",
"router",
"app"
],
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"publishConfig": {
"access": "public"
},
"engines": {
"node": ">=10"
},
"engineStrict": true,
"peerDependencies": {
"@reflet/express": "^2.0.0",
"@reflet/http": "^1.0.0",
"@types/express": "^4.17.0",
"express": "^4.17.0"
},
"devDependencies": {
"@reflet/express": "^2.0.0",
"@reflet/http": "^1.0.0"
},
"scripts": {
"build": "ts-node -T ../build.ts",
"test": "jest --config ../jest.config.js",
"test:watch": "yarn test --watch --verbose false",
"test:file": "yarn test --testPathPattern",
"preversion": "yarn test --coverage && ts-node -T ../testing/summary.ts && git add coverage-summary.json",
"prepublishOnly": "yarn run build",
"publish:next": "yarn publish --tag next"
}
}