-
Notifications
You must be signed in to change notification settings - Fork 64
/
package.json
58 lines (58 loc) · 1.6 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
{
"name": "typescript-ioc",
"version": "3.2.3",
"description": "A Lightweight annotation-based dependency injection container for typescript.",
"author": "Thiago da Rosa de Bustamante <[email protected]>",
"scripts": {
"start": "tsc -w",
"build": "npm run clean && tsc",
"clean": "rimraf dist",
"prepare": "rimraf dist && tsc",
"lint": "tslint ./src/**/*.ts ./test/**/*.ts",
"lint:fix": "tslint --fix ./src/**/*.ts ./test/**/*.ts -t verbose",
"pretest": "npm run build && npm run lint",
"test": "jest --config ./test/jest.config.js --coverage",
"tsc": "tsc"
},
"dependencies": {
"lodash.get": "^4.4.2",
"lodash.set": "^4.3.2",
"reflect-metadata": "^0.1.13"
},
"devDependencies": {
"@types/jest": "^26.0.0",
"@types/lodash.get": "^4.4.6",
"@types/lodash.set": "^4.3.6",
"@types/node": "^8.10.61",
"codecov": "^3.7.0",
"jest": "^26.1.0",
"rimraf": "^2.7.1",
"source-map-support": "^0.5.19",
"ts-jest": "^26.1.1",
"ts-node": "^8.10.2",
"tslint": "^6.1.2",
"tslint-config-prettier": "^1.18.0",
"typescript": "^3.9.5"
},
"keywords": [
"ioc",
"di",
"cdi",
"javascript",
"typescript",
"node",
"dependency injection",
"dependency inversion",
"inversion of control container"
],
"repository": {
"type": "git",
"url": "https://github.com/thiagobustamante/typescript-ioc.git"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/thiagobustamante/typescript-ioc/issues"
},
"main": "./dist/typescript-ioc.js",
"typings": "./dist/typescript-ioc.d.ts"
}