-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
45 lines (45 loc) · 1.37 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
{
"name": "@dadi/queue",
"version": "2.3.1",
"description": "A lightweight, high-performance task queue built on Node JS and Redis. Includes a broker for queue management and routing, plus a worker framework for processing messages.",
"main": "index.js",
"scripts": {
"test": "snazzy 'lib/*.js' && env NODE_ENV=test ./node_modules/.bin/nyc --reporter=lcov ./node_modules/mocha/bin/_mocha test && ./node_modules/.bin/nyc report",
"posttest": "./scripts/coverage.js",
"start": "node ./index.js --node-env=development",
"snyk-protect": "snyk protect",
"prepare": "npm run snyk-protect",
"prepublish": "npm run snyk-protect"
},
"dependencies": {
"@dadi/boot": "^1.1.4",
"@dadi/logger": "^1.4.0",
"chokidar": "^3.0.0",
"colors": "^1.1.2",
"console-stamp": "^0.2.5",
"convict": "^4.3.2",
"mkdirp": "^0.5.1",
"rsmq-worker": "^0.4.3",
"snyk": "^1.158.0"
},
"devDependencies": {
"coveralls": "^3.0.2",
"env-test": "^1.0.0",
"fakeredis": "^1.0.3",
"mocha": "^5.2.0",
"mock-require": "^3.0.1",
"nyc": "^14.0.0",
"redis": "^2.6.4",
"should": "^11.1.2",
"sinon": "^2.0.0",
"snazzy": "^5.0.0",
"standard": "^8.6.0",
"supertest": "^2.0.1"
},
"repository": {
"type": "git",
"url": "https://github.com/dadi/queue.git"
},
"author": "Edge <core@edge.network>",
"snyk": true
}