forked from thiagobustamante/typescript-ioc
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
71 lines (71 loc) · 2 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
{
"name": "@nmshd/typescript-ioc",
"version": "3.2.4",
"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.17.21",
"reflect-metadata": "^0.2.2"
},
"devDependencies": {
"@js-soft/license-check": "^1.0.9",
"@types/jest": "^29.5.13",
"@types/lodash": "^4.17.10",
"@types/node": "^22.7.5",
"@typescript-eslint/eslint-plugin": "^6.20.0",
"@typescript-eslint/parser": "^6.20.0",
"codecov": "^3.8.3",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-jsdoc": "^48.0.4",
"eslint-plugin-prefer-arrow": "^1.2.3",
"jest": "^29.7.0",
"prettier": "^3.3.3",
"rimraf": "^6.0.1",
"source-map-support": "^0.5.21",
"ts-jest": "^29.2.5",
"ts-node": "^10.9.2",
"typescript": "^5.6.3"
},
"publishConfig": {
"access": "public"
}
}