-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
52 lines (52 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
{
"name": "integreat-queue-redis",
"version": "0.1.4",
"description": "Integreat queue interface for Redis (built on Bee-Queue)",
"author": "Kjell-Morten Bratsberg Thorsen <post@kjellmorten.no> (http://kjellmorten.no/)",
"license": "ISC",
"main": "index.js",
"scripts": {
"test": "npm run lint && NODE_ENV=test nyc --reporter=text-summary ava",
"dev": "NODE_ENV=test ava --watch",
"nyc:report": "nyc report",
"coverage": "nyc report --reporter=text-lcov | coveralls",
"lint": "standard"
},
"ava": {
"files": [
"tests/**/*-test.js"
],
"sources": [
"index.js"
]
},
"nyc": {
"exclude": [
"**/*-test.js"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/kjellmorten/integreat-queue-redis.git"
},
"bugs": {
"url": "https://github.com/kjellmorten/integreat-queue-redis/issues"
},
"homepage": "https://github.com/kjellmorten/integreat-queue-redis#readme",
"engines": {
"node": ">= 8.6",
"npm": ">= 5.4"
},
"dependencies": {
"bee-queue": "^1.2.2",
"debug": "^4.1.0"
},
"devDependencies": {
"ava": "^2.2.0",
"babel-preset-env": "^1.7.0",
"coveralls": "^3.0.5",
"nyc": "^14.1.1",
"sinon": "^7.3.2",
"standard": "^13.0.2"
}
}