-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 923 Bytes
/
package.json
File metadata and controls
32 lines (32 loc) · 923 Bytes
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
{
"name": "@dadi/queue-wrapper",
"version": "0.0.0-development",
"description": "A high-level library for interacting with DADI Queue.",
"main": "index.js",
"dependencies": {
"rsmq": "^0.7.1"
},
"devDependencies": {
"coveralls": "^3.0.3",
"fakeredis": "^1.0.3",
"mocha": "^3.2.0",
"nyc": "^14.1.0",
"redis": "^2.6.4",
"should": "^11.1.2",
"sinon": "2.x.x",
"snazzy": "^5.0.0",
"standard": "^8.6.0",
"supertest": "^2.0.1"
},
"scripts": {
"test": "snazzy index.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 ./main.js --node-env=development"
},
"repository": {
"type": "git",
"url": "https://github.com/dadi/queue-wrapper.git"
},
"author": "Robert Stanford <rs@dadi.co>",
"license": "MIT"
}