-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
54 lines (54 loc) · 1.26 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
{
"name": "monkeycymbal",
"version": "1.5.0",
"homepage": "https://github.com/pierissimo/monkeycymbal",
"description": "Production ready, MongoDB-based queue for Node.",
"author": {
"email": "[email protected]",
"name": "Piero Maltese",
"url": "https://github.com/pierissimo"
},
"license": "MIT",
"main": "./build/src/index.js",
"types": "./build/src/index.d.ts",
"scripts": {
"build": "tsc -p ./tsconfig.release.json",
"test": "mocha",
"cover": "nyc npm run test"
},
"dependencies": {
"bluebird": "3.5.4",
"debug": "4.1.1",
"eventemitter3": "3.1.2",
"lodash": "4.17.21",
"tslib": "^2.5.0",
"uuid": "3.3.2"
},
"devDependencies": {
"@types/bluebird": "3.5.26",
"@types/lodash": "4.14.123",
"@types/mocha": "5.2.6",
"@types/node": "11.9.0",
"@types/should": "13.0.0",
"eslint": "^4.19.1",
"eslint-config-airbnb-base": "13.1.0",
"eslint-plugin-import": "2.17.2",
"mocha": "6.1.4",
"mongodb": "^5.9.0",
"nyc": "14.1.1",
"prettier": "1.17.0",
"should": "13.2.3",
"sinon": "7.3.2",
"ts-node": "8.0.3",
"tslint": "5.12.1",
"tslint-config-airbnb": "5.11.1",
"tslint-config-prettier": "1.18.0",
"typescript": "^4.9.5"
},
"peerDependencies": {
"mongodb": "^4.14.0 || ^5.9.0"
},
"engines": {
"node": ">=8"
}
}