-
Notifications
You must be signed in to change notification settings - Fork 100
/
Copy pathpackage.json
77 lines (77 loc) · 2.31 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
77
{
"name": "inversify-express-utils",
"version": "6.4.10",
"author": "Cody Simms",
"description": "Some utilities for the development of express applications with Inversify",
"license": "MIT",
"main": "lib/cjs/index.js",
"module": "lib/esm/index.js",
"exports": {
".": {
"import": "./lib/esm/index.js",
"require": "./lib/cjs/index.js"
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/inversify/inversify-express-utils.git"
},
"scripts": {
"build": "npm run build:cjs && npm run build:esm",
"build:cjs": "tsc --build tsconfig.cjs.json && node ./scripts/writeCommonJsPackageJson.mjs ./lib/cjs",
"build:esm": "rollup -c ./rollup.config.mjs && node ./scripts/writeEsmPackageJson.mjs ./lib/esm",
"build:clean": "rimraf lib",
"format": "prettier --write ./src/**/*.ts",
"lint": "eslint ./src",
"prebuild": "npm run build:clean",
"prepublish": "npm run build",
"test": "jest",
"test:coverage": "jest --coverage",
"test:watch": "jest --watch"
},
"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": {
"@eslint/js": "9.18.0",
"@jest/globals": "29.7.0",
"@rollup/plugin-terser": "0.4.4",
"@rollup/plugin-typescript": "12.1.2",
"@types/cookie-parser": "1.4.7",
"@types/express": "^4.17.21",
"@types/node": "22.10.7",
"@types/supertest": "6.0.2",
"@typescript-eslint/eslint-plugin": "8.20.0",
"@typescript-eslint/parser": "8.20.0",
"body-parser": "1.20.3",
"cookie-parser": "1.4.7",
"eslint": "9.18.0",
"eslint-config-prettier": "10.0.1",
"eslint-plugin-prettier": "5.2.2",
"eslint-plugin-simple-import-sort": "12.1.1",
"jest": "29.7.0",
"prettier": "3.4.2",
"reflect-metadata": "0.2.2",
"rimraf": "6.0.1",
"rollup-plugin-dts": "6.1.1",
"supertest": "6.3.4",
"ts-loader": "9.5.2",
"ts-jest": "29.2.5",
"typescript": "5.6.3",
"typescript-eslint": "8.20.0"
},
"peerDependencies": {
"express": "^4.21.1",
"inversify": "^6.0.3",
"reflect-metadata": "~0.2.2"
}
}