-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
51 lines (51 loc) · 1.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
{
"name": "@tsxper/service-manager",
"version": "2.0.0",
"description": "TypeScript extension to the Service Locator design pattern, that helps with managing application dependencies.",
"scripts": {
"test": "jest --runInBand",
"test:ci": "jest --ci --runInBand --coverage",
"lint": "eslint src",
"lint:fix": "eslint --fix src",
"build": "make build",
"pub": "make pub"
},
"repository": {
"type": "git",
"url": "git+https://github.com/tsxper/service-manager.git"
},
"author": "Vladyslav Babak",
"license": "MIT",
"bugs": {
"url": "https://github.com/tsxper/service-manager/issues"
},
"homepage": "https://github.com/tsxper/service-manager#readme",
"exports": {
"import": "./esm/index.js",
"require": "./cjs/index.js",
"default": "./esm/index.js"
},
"main": "./esm/index.js",
"types": "./types/index.d.ts",
"dependencies": {},
"devDependencies": {
"@types/jest": "^29.5.11",
"@typescript-eslint/eslint-plugin": "^6.13.2",
"@typescript-eslint/parser": "^6.13.2",
"eslint": "^8.55.0",
"jest": "^29.7.0",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.2",
"typescript": "^5.3.3"
},
"publishConfig": {
"access": "public"
},
"keywords": [
"service",
"manager",
"locator",
"dependency",
"container"
]
}