forked from thiagobustamante/typescript-ioc
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 1.97 KB
/
Copy pathpackage.json
File metadata and controls
70 lines (70 loc) · 1.97 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
{
"name": "@nmshd/typescript-ioc",
"description": "A Lightweight annotation-based dependency injection container for typescript.",
"keywords": [
"ioc",
"di",
"cdi",
"javascript",
"typescript",
"node",
"dependency injection",
"dependency inversion",
"inversion of control container"
],
"bugs": {
"url": "https://github.com/nmshd/typescript-ioc/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/nmshd/typescript-ioc.git"
},
"license": "MIT",
"authors": [
"Thiago da Rosa de Bustamante <trbustamante@gmail.com>",
"js-soft GmbH"
],
"main": "./dist/typescript-ioc.js",
"typings": "./dist/typescript-ioc.d.ts",
"scripts": {
"build": "npm run clean && tsc",
"clean": "rimraf dist",
"lint": "npm run lint:eslint && npm run lint:prettier && npm run lint:tsc",
"lint:eslint": "eslint ./src/**/*.ts ./test/**/*.ts",
"lint:eslint:fix": "eslint --fix ./src/**/*.ts ./test/**/*.ts -t verbose",
"lint:prettier": "prettier --check .",
"lint:tsc": "tsc --noEmit",
"prepare": "rimraf dist && tsc",
"start": "tsc -w",
"pretest": "npm run build && npm run lint",
"test": "jest --config ./test/jest.config.js --coverage",
"tsc": "tsc"
},
"dependencies": {
"lodash": "^4.18.1",
"reflect-metadata": "^0.2.2"
},
"devDependencies": {
"@js-soft/license-check": "^1.0.12",
"@types/jest": "^30.0.0",
"@types/lodash": "^4.17.24",
"@types/node": "^24.7.2",
"@typescript-eslint/eslint-plugin": "^6.20.0",
"@typescript-eslint/parser": "^6.20.0",
"codecov": "^3.8.3",
"eslint": "^8.57.1",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-jsdoc": "^48.0.4",
"eslint-plugin-prefer-arrow": "^1.2.3",
"jest": "^30.4.2",
"prettier": "^3.9.6",
"rimraf": "^6.1.3",
"source-map-support": "^0.5.21",
"ts-jest": "^29.4.11",
"ts-node": "^10.9.2",
"typescript": "^5.9.3"
},
"publishConfig": {
"access": "public"
}
}