forked from vladprotsevych/node-persistent-queue
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
36 lines (36 loc) · 862 Bytes
/
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
{
"name": "node-persistent-queue",
"version": "1.0.5",
"description": "Simple SQLite backed Queue for running many short tasks in Node.js event thread",
"main": "index.js",
"keywords": [
"sqlite",
"persistent",
"queue",
"node"
],
"repository": "https://github.com/damoclark/node-persistent-queue",
"bugs": "https://github.com/damoclark/node-persistent-queue/issues",
"homepage": "https://github.com/damoclark/node-persistent-queue",
"engines": {
"node": ">=6.0.0"
},
"scripts": {
"test": "mocha"
},
"author": {
"name": "Damien Clark",
"email": "[email protected]"
},
"license": "Apache-2.0",
"dependencies": {
"sqlite3": "^5.0.2"
},
"devDependencies": {
"eslint": "^5.16.0",
"mocha": "^5.2.0",
"should": "^11.2.1",
"should-sinon": "0.0.5",
"sinon": "^2.2.0"
}
}