forked from microsoft/tsyringe
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
67 lines (67 loc) · 1.77 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
{
"name": "tsyringe-neo",
"version": "4.8.0",
"description": "Lightweight dependency injection container for JavaScript/TypeScript",
"type": "commonjs",
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"exports": {
".": {
"import": "./dist/index.mjs",
"default": "./dist/index.js"
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/risen228/tsyringe-neo.git"
},
"keywords": [
"dependency injection",
"dependency",
"injection",
"ioc",
"container",
"javascript",
"typescript",
"tsyringe"
],
"engines": {
"node": ">= 18.0.0"
},
"packageManager": "[email protected]",
"author": "Evgenii Zakharov",
"license": "MIT",
"bugs": {
"url": "https://github.com/risen228/tsyringe-neo/issues"
},
"homepage": "https://github.com/risen228/tsyringe-neo#readme",
"scripts": {
"build": "node build.mjs",
"clean": "rimraf ./dist",
"test": "jest --config test/jest.config.js",
"test:inspect": "node --inspect-brk ./node_modules/jest/bin/jest.js --runInBand --config test/jest.config.js",
"test:coverage": "jest --config test/jest.config.js --coverage",
"lint": "eslint \"src/**/*.{js,mjs,cjs,ts,mts}\"",
"lint:fix": "eslint \"src/**/*.{js,mjs,cjs,ts,mts}\" --fix"
},
"dependencies": {
"tslib": "^2.6.3"
},
"devDependencies": {
"@types/jest": "^24.0.21",
"@types/node": "^20.14.11",
"esbuild": "^0.23.0",
"eslint": "^8.57.0",
"eslint-kit": "^11.0.1",
"jest": "^24.7.1",
"prettier": "^3.3.3",
"reflect-metadata": "^0.2.2",
"rimraf": "^3.0.0",
"rollup": "^4.18.1",
"rollup-plugin-dts": "^6.1.1",
"rollup-plugin-esbuild": "^6.1.1",
"ts-jest": "^24.0.2",
"typescript": "5.4.5"
}
}