forked from thiagobustamante/typescript-rest-ioc
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
65 lines (65 loc) · 1.76 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
{
"name": "typescript-rest-ioc",
"version": "1.0.1",
"description": "A Typescript-Rest Service Factory to integrate it wit typescript-ioc.",
"author": "Thiago da Rosa de Bustamante <trbustamante@gmail.com>",
"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"
},
"devDependencies": {
"@types/debug": "^4.1.5",
"@types/jest": "^26.0.23",
"@types/lodash": "^4.14.170",
"@types/node": "^15.12.2",
"codecov": "^3.8.2",
"jest": "^27.0.4",
"rimraf": "^3.0.2",
"source-map-support": "^0.5.19",
"ts-jest": "^27.0.3",
"ts-loader": "^9.2.3",
"ts-node": "^10.0.0",
"tslint": "^6.1.3",
"tslint-config-prettier": "^1.18.0",
"typescript": "^4.1.3",
"typescript-ioc": "^3.0.2",
"typescript-rest": "^3.0.4"
},
"peerDependencies": {
"typescript-ioc": "^3.0.2",
"typescript-rest": "^3.0.4"
},
"keywords": [
"typescript-rest",
"rest",
"ioc",
"di",
"cdi",
"javascript",
"typescript",
"node",
"dependency injection",
"dependency inversion",
"inversion of control container"
],
"repository": {
"type": "git",
"url": "https://github.com/thiagobustamante/typescript-rest-ioc.git"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/thiagobustamante/typescript-rest-ioc/issues"
},
"main": "./dist/typescript-rest-ioc.js",
"typings": "./dist/typescript-rest-ioc.d.ts",
"dependencies": {
"lodash": "^4.17.15"
}
}