forked from inversify/inversify-express-utils
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
64 lines (64 loc) · 2.02 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
{
"author": "Cody Simms",
"bugs": {
"url": "https://github.com/inversify/inversify-express-utils/issues"
},
"dependencies": {
"express": "4.18.2",
"http-status-codes": "2.3.0",
"inversify": "6.0.2"
},
"description": "Some utilities for the development of express applications with Inversify",
"devDependencies": {
"@types/async": "3.2.24",
"@types/cookie-parser": "1.4.6",
"@types/express": "4.17.21",
"@types/jest": "29.5.10",
"@types/node": "20.10.0",
"@types/supertest": "2.0.16",
"@typescript-eslint/eslint-plugin": "6.12.0",
"@typescript-eslint/parser": "6.12.0",
"async": "3.2.5",
"cookie-parser": "1.4.6",
"eslint": "8.54.0",
"eslint-plugin-import": "2.29.0",
"jest": "29.7.0",
"publish-please": "5.5.2",
"reflect-metadata": "0.1.13",
"supertest": "6.3.3",
"ts-jest": "29.1.1",
"typescript": "5.3.2",
"updates": "15.0.4"
},
"homepage": "https://github.com/inversify/inversify-express-utils#readme",
"jsnext:main": "es/index.js",
"keywords": [
"InversifyJS",
"express"
],
"license": "MIT",
"main": "lib/index.js",
"module": "es/index.js",
"name": "inversify-express-utils",
"repository": {
"type": "git",
"url": "git+https://github.com/inversify/inversify-express-utils.git"
},
"scripts": {
"build": "npm run build:lib && npm run build:es && npm run build:es6",
"build:lib": "tsc -p src/tsconfig.json",
"build:es": "tsc -p src/tsconfig-es.json",
"build:es6": "tsc -p src/tsconfig-es6.json",
"clean": "rm -r es es6 lib",
"test": "jest",
"test:coverage": "jest --coverage",
"test:watch": "jest --watch",
"pretest": "eslint ./",
"publish-please": "publish-please",
"prepublish": "publish-please guard",
"update": "updates --update --minor && (git diff-files --quiet package.json || (rimraf package-lock.json node_modules && npm install))",
"postupdate": "git diff-files --quiet package-lock.json || npm test"
},
"types": "./lib/index.d.ts",
"version": "6.4.5"
}