-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·61 lines (61 loc) · 1.55 KB
/
package.json
File metadata and controls
executable file
·61 lines (61 loc) · 1.55 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
{
"name": "ts-framework-queue",
"version": "1.0.4",
"description": "RabbitMQ abstraction layer for TS Framework",
"author": "Luis Brito <luis@nxtep.io>",
"license": "MIT",
"main": "./dist/index.js",
"typings": "./dist/types/index.d.ts",
"files": [
"dist"
],
"repository": {
"type": "git",
"url": "https://github.com/nxtep-io/ts-framework-queue.git"
},
"scripts": {
"build": "yarn run -s clean && tsc",
"clean": "rimraf ./dist",
"test": "jest --config jest.json",
"docs": "./scripts/docs.sh",
"lint": "tslint --config tslint.json --project ."
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"post-commit": "git update-index --again"
}
},
"lint-staged": {
"{api,config,tests}/**/*.ts": [
"prettier --write",
"tslint --fix",
"git add"
]
},
"dependencies": {
"@types/amqplib": "^0.5.9",
"amqplib": "^0.5.3",
"ts-framework-common": "nxtep-io/ts-framework-common#2.4.1"
},
"devDependencies": {
"@types/jest": "^23.3.1",
"@types/node": "^14.11.5",
"husky": "^1.0.0-rc.13",
"jest": "^23.4.2",
"lint-staged": "^7.2.0",
"nodemon": "^1.18.7",
"nxtep-typedoc-theme": "nxtep-io/nxtep-typedoc-theme",
"prettier": "^1.14.0",
"rimraf": "^2.6.2",
"sinon": "^5.0.3",
"ts-jest": "^23.1.2",
"ts-node": "^7.0.1",
"tslint": "^5.11.0",
"tslint-config-airbnb": "^5.9.2",
"tslint-config-prettier": "^1.14.0",
"tslint-no-circular-imports": "^0.5.0",
"typedoc": "^0.19.2",
"typescript": "^3.1.2"
}
}