-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
55 lines (55 loc) · 1.64 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
{
"name": "@webscaledev/express-utils",
"version": "1.5.0",
"publishConfig": {
"access": "public"
},
"description": "A couple of utilities to make ExpressJS life easier",
"main": "index.js",
"types": "dist/index.d.ts",
"scripts": {
"test": "jest --ci",
"test:watch": "jest --watch",
"lint": "tslint -p .",
"clean": "rm -rf dist",
"build": "npm run build:default && npm run build:es2015",
"build:default": "tsc --project tsconfig.build.json",
"build:es2015": "tsc --project tsconfig.build.json --outDir dist/es5 --target es2015",
"ci": "npm run clean && npm run lint && npm run test && npm run build"
},
"repository": {
"type": "git",
"url": "git://github.com/njirem/express-utils.git"
},
"keywords": [
"expressjs",
"error"
],
"author": "Merijn",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/njirem/express-utils/issues"
},
"homepage": "https://github.com/njirem/express-utils#readme",
"dependencies": {
"@types/express": "^4.17.2",
"@types/express-ws": "^3.0.0",
"@types/json-stringify-safe": "^5.0.0",
"@types/passport": "^1.0.2",
"@types/ws": "^6.0.4",
"is-stream": "^2.0.0",
"json-stringify-safe": "^5.0.1",
"tslib": "^1.10.0"
},
"devDependencies": {
"@types/jest": "^24.0.23",
"express": "^4.17.1",
"jest": "^24.9.0",
"ts-jest": "^24.2.0",
"tslint": "^5.20.1",
"typescript": "^3.7.2"
},
"peerDependencies": {
"express": ">=4.0.0"
}
}