-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.22 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.22 KB
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
{
"name": "@stnekroman/inversityts",
"version": "0.0.6",
"description": "IoC library for TypeScript",
"license": "MIT",
"main": "./dist/src/index.js",
"types": "./src/index.ts",
"author": {
"name": "StNekroman",
"email": "StNekroman@gmail.com"
},
"repository": {
"url": "git+https://github.com/StNekroman/InversityTS.git"
},
"keywords": [
"TypeScript",
"TS",
"InversityTS",
"inversity",
"IoC",
"DI",
"Dependency Injection"
],
"exports": {
".": "./dist/src/index.js"
},
"scripts": {
"clean": "rimraf dist",
"prebuild": "npm run clean",
"build": "tsc",
"test": "yarn build & jest",
"debugTests": "jest -i",
"lint": "eslint ./src",
"npm-publish": "npm publish --access public",
"npm-publish-github": "npm publish --access public --registry=https://npm.pkg.github.com"
},
"dependencies": {
"@stnekroman/tstools": "0.1.0"
},
"devDependencies": {
"@eslint/js": "^9.9.0",
"@jest/globals": "29.7.0",
"@types/eslint__js": "^8.42.3",
"@types/node": "20.14.14",
"eslint": "^9.9.0",
"jest": "29.7.0",
"rimraf": "5.0.10",
"ts-jest": "29.2.4",
"typescript": "^5.5.4",
"typescript-eslint": "^8.1.0"
}
}