-
Notifications
You must be signed in to change notification settings - Fork 715
/
package.json
73 lines (73 loc) · 2.37 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
{
"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.3.0"
},
"devDependencies": {
"@eslint/js": "9.13.0",
"@types/chai": "4.3.6",
"@types/mocha": "10.0.9",
"@types/sinon": "17.0.3",
"@typescript-eslint/eslint-plugin": "8.12.2",
"@typescript-eslint/parser": "8.12.2",
"chai": "4.3.8",
"eslint": "9.13.0",
"eslint-config-prettier": "9.1.0",
"eslint-plugin-prettier": "5.2.1",
"eslint-plugin-simple-import-sort": "12.1.1",
"mocha": "10.7.3",
"nyc": "17.1.0",
"prettier": "3.3.3",
"publish-please": "5.5.2",
"reflect-metadata": "0.2.2",
"rimraf": "6.0.1",
"sinon": "19.0.2",
"ts-node": "10.9.2",
"typescript": "5.6.3",
"typescript-eslint": "8.12.2",
"updates": "16.4.0"
},
"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/inversify.js",
"module": "es/inversify.js",
"name": "inversify",
"repository": {
"type": "git",
"url": "https://github.com/inversify/InversifyJS.git"
},
"scripts": {
"build": "npm run build:lib && npm run build:amd && npm run build:es && npm run build:es6",
"build:amd": "tsc -p src/tsconfig-amd.json",
"build:es": "tsc -p src/tsconfig-es.json",
"build:es6": "tsc -p src/tsconfig-es6.json",
"build:lib": "tsc -p src/tsconfig.json",
"clean": "rimraf amd es es6 lib",
"format": "prettier --write ./src/*.ts ./src/**/*.ts ./test/*.ts ./test/**/*.ts",
"lint": "eslint ./src ./test",
"postupdate": "git diff-files --quiet package-lock.json || npm test",
"prepublish": "npm run build && publish-please guard",
"publish-please": "publish-please",
"test": "nyc --reporter=lcov --require ts-node/register mocha test/**/*.test.ts --reporter spec --retries 3 --require 'node_modules/reflect-metadata/Reflect.js' --exit",
"update": "updates --update --minor && npm install"
},
"sideEffects": false,
"types": "lib/inversify.d.ts",
"version": "6.0.3"
}