forked from node-celery-ts/node-celery-ts
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
108 lines (108 loc) · 2.81 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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
{
"name": "celery-ts",
"version": "1.1.1",
"description": "TypeScript Celery client for Node",
"keywords": [
"amqp",
"celery",
"rabbitmq",
"redis",
"typescript"
],
"homepage": "https://github.com/node-celery-ts/node-celery-ts",
"bugs": {
"url": "https://github.com/node-celery-ts/node-celery-ts/issues",
"email": "github@cameron.thewills.net"
},
"license": "BSD-3-Clause",
"author": {
"name": "Cameron Will",
"email": "github@cameron.thewills.net",
"url": "https://github.com/cwill747/"
},
"main": "dist/index.js",
"types": "dist/index.d.ts",
"directory": {
"lib": "./dist",
"doc": "./doc",
"example": "./example",
"test": "./test"
},
"repository": {
"type": "git",
"url": "https://github.com/node-celery-ts/node-celery-ts"
},
"devDependencies": {
"@types/amqplib": "^0.5.8",
"@types/bluebird": "^3.5.23",
"@types/chai": "^4.1.4",
"@types/events": "^1.2.0",
"@types/ioredis": "^3.2.14",
"@types/js-yaml": "^3.11.2",
"@types/mocha": "^5.2.5",
"@types/node": "^10.7.0",
"@types/underscore": "^1.8.8",
"@types/urijs": "^1.15.38",
"@types/uuid": "^3.4.3",
"chai": "^4.1.2",
"mocha": "^5.2.0",
"nyc": "^12.0.2",
"source-map-support": "^0.5.8",
"ts-mockito": "^2.3.0",
"ts-node": "^7.0.1",
"tslint": "^5.11.0",
"tslint-clean-code": "^0.2.7",
"tslint-eslint-rules": "^5.4.0",
"tslint-sonarts": "^1.7.0",
"typedoc": "TypeStrong/typedoc#master",
"typescript": "^3.0.1"
},
"dependencies": {
"amqplib": "^0.5.2",
"ioredis": "^4.0.0",
"js-yaml": "^3.13.1",
"underscore": "^1.9.1",
"urijs": "^1.19.1",
"uuid": "^3.3.2"
},
"scripts": {
"prepare": "./node_modules/typescript/bin/tsc",
"lint": "./node_modules/tslint/bin/tslint --project ./",
"test": "nyc mocha",
"test-integration": "nyc mocha --opts ./vagrant/mocha.opts",
"typedoc": "./node_modules/typedoc/bin/typedoc ./src/"
},
"nyc": {
"extension": [
".ts"
],
"exclude": [
"**/*.d.ts"
],
"include": [
"./src/**/*.ts"
],
"reporter": [
"lcov"
],
"all": true,
"watermarks": {
"lines": [
80,
95
],
"functions": [
80,
95
],
"branches": [
80,
95
],
"statements": [
80,
95
]
}
}
}