-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
76 lines (76 loc) · 2.44 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
{
"name": "@vamship/expressjs-routes",
"version": "3.0.2",
"description": "Enable declarative configuration and mounting of expressjs routes",
"type": "module",
"exports": "./src/index.js",
"scripts": {
"clean": "gulp clean",
"format": "gulp format",
"lint": "gulp lint",
"lint-fix": "gulp lint-fix",
"build": "gulp build",
"test": "cross-env NODE_ENV=test dotenv-load gulp --series clean build test-unit",
"package": "cross-env NODE_ENV=test dotenv-load gulp --series clean format lint build test-unit package",
"publish": "gulp publish",
"docs": "gulp docs",
"all": "cross-env NODE_ENV=test dotenv-load gulp --series clean format lint build test-unit clean",
"watch:build": "gulp watch-build",
"watch:test": "cross-env NODE_ENV=development dotenv-load gulp watch-test-unit",
"watch:lint": "gulp watch-lint"
},
"engines": {
"node": ">= 20.11.0",
"npm": ">= 10.2.4"
},
"files": [
"package.json",
"LICENSE",
"README.md",
"src/**/*"
],
"keywords": [],
"author": "Vamshi K Ponnapalli <vamshi.ponnapalli@gmail.com>",
"license": "MIT",
"devDependencies": {
"@types/chai": "^4.3.16",
"@types/chai-as-promised": "^7.1.8",
"@types/express": "^4.17.21",
"@types/mocha": "^10.0.7",
"@types/node": "^20.14.9",
"@types/sinon": "^17.0.3",
"@types/sinon-chai": "^3.2.12",
"@types/sinon-express-mock": "^1.3.12",
"@typescript-eslint/eslint-plugin": "^7.14.1",
"@vamship/arg-utils": "^3.0.3",
"@vamship/build-utils": "^2.2.2",
"@vamship/error-types": "^2.0.1",
"@vamship/logger": "^5.0.3",
"@vamship/test-utils": "^3.1.1",
"ajv": "^8.16.0",
"c8": "^10.1.2",
"chai": "^4.4.1",
"chai-as-promised": "^8.0.0",
"cross-env": "^7.0.3",
"dotenv-load": "^3.0.0",
"esmock": "^2.6.6",
"express": "^4.19.2",
"gulp": "^5.0.0",
"mocha": "^10.5.2",
"sinon": "^18.0.0",
"sinon-chai": "^3.7.0",
"sinon-express-mock": "^2.2.1",
"typedoc": "^0.26.2"
},
"dependencies": {
"dot-prop": "^9.0.0"
},
"peerDependencies": {
"@vamship/logger": "^5.0.3",
"express": "^4.19.2"
},
"buildMetadata": {
"type": "lib",
"language": "ts"
}
}