-
Notifications
You must be signed in to change notification settings - Fork 721
/
package.json
80 lines (80 loc) · 2.54 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
78
79
80
{
"author": "Remo H. Jansen",
"bugs": {
"url": "https://github.com/inversify/InversifyJS/issues"
},
"description": "A powerful and lightweight inversion of control container for JavaScript and Node.js apps powered by TypeScript.",
"dependencies": {
"@inversifyjs/common": "1.4.0",
"@inversifyjs/core": "1.3.5"
},
"devDependencies": {
"@eslint/js": "9.17.0",
"@rollup/plugin-terser": "0.4.4",
"@rollup/plugin-typescript": "12.1.1",
"@types/chai": "4.3.20",
"@types/mocha": "10.0.10",
"@types/sinon": "17.0.3",
"@typescript-eslint/eslint-plugin": "8.18.0",
"@typescript-eslint/parser": "8.18.0",
"chai": "4.5.0",
"eslint": "9.17.0",
"eslint-config-prettier": "9.1.0",
"eslint-plugin-prettier": "5.2.1",
"eslint-plugin-simple-import-sort": "12.1.1",
"mocha": "11.0.1",
"nyc": "17.1.0",
"prettier": "3.4.2",
"rimraf": "6.0.1",
"rollup-plugin-dts": "6.1.1",
"sinon": "19.0.2",
"ts-loader": "9.5.1",
"ts-node": "10.9.2",
"typescript": "5.7.2",
"typescript-eslint": "8.18.0"
},
"peerDependencies": {
"reflect-metadata": "~0.2.2"
},
"engines": {},
"homepage": "http://inversify.io",
"jsnext:main": "es/inversify.js",
"keywords": [
"dependency injection",
"dependency inversion",
"di",
"inversion of control container",
"ioc",
"javascript",
"node",
"typescript"
],
"license": "MIT",
"main": "lib/cjs/index.js",
"module": "lib/esm/index.js",
"exports": {
".": {
"import": "./lib/esm/index.js",
"require": "./lib/cjs/index.js"
}
},
"name": "inversify",
"repository": {
"type": "git",
"url": "https://github.com/inversify/InversifyJS.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": "nyc --reporter=lcov --require ts-node/register mocha src/test/*.test.ts src/test/**/*.test.ts --reporter spec --require 'node_modules/reflect-metadata/Reflect.js' --exit",
"test:cjs": "nyc --reporter=lcov mocha lib/cjs/test/*.test.js lib/cjs/test/**/*.test.js --reporter spec --require 'node_modules/reflect-metadata/Reflect.js'"
},
"sideEffects": false,
"version": "6.2.0"
}