-
Notifications
You must be signed in to change notification settings - Fork 100
/
package.json
66 lines (66 loc) · 2.07 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
{
"name": "inversify-express-utils",
"version": "6.4.7",
"author": "Cody Simms",
"description": "Some utilities for the development of express applications with Inversify",
"license": "MIT",
"main": "lib/index.js",
"module": "es/index.js",
"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",
"eslint:fix": "eslint --fix ./",
"test": "jest",
"test:coverage": "jest --coverage",
"test:watch": "jest --watch",
"pretest": "eslint ./",
"publish-please": "publish-please",
"prepublish": "npm run build && 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"
},
"bugs": {
"url": "https://github.com/inversify/inversify-express-utils/issues"
},
"homepage": "https://github.com/inversify/inversify-express-utils#readme",
"jsnext:main": "es/index.js",
"keywords": [
"InversifyJS",
"express"
],
"dependencies": {
"http-status-codes": "2.3.0"
},
"devDependencies": {
"@types/async": "3.2.24",
"@types/cookie-parser": "1.4.7",
"@types/express": "^4.17.21",
"@types/jest": "29.5.14",
"@types/node": "20.17.1",
"@types/supertest": "6.0.2",
"@typescript-eslint/eslint-plugin": "8.11.0",
"@typescript-eslint/parser": "8.11.0",
"async": "3.2.6",
"cookie-parser": "1.4.7",
"eslint": "9.12.0",
"eslint-plugin-import": "2.31.0",
"jest": "29.7.0",
"publish-please": "5.5.2",
"reflect-metadata": "0.2.2",
"supertest": "6.3.4",
"ts-jest": "29.2.5",
"typescript": "5.6.3",
"updates": "15.3.1"
},
"peerDependencies": {
"express": "^4.21.1",
"inversify": "^6.0.3"
}
}