-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 753 Bytes
/
package.json
File metadata and controls
34 lines (34 loc) · 753 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
33
34
{
"name": "node-pgq",
"version": "0.0.14",
"description": "Node implementation of PostgreSQL SkyTools PGQ ",
"main": "index.js",
"scripts": {
"test": "./node_modules/mocha/bin/mocha",
"coverage": "./node_modules/istanbul/lib/cli.js cover ./node_modules/mocha/bin/_mocha"
},
"keywords": [
"node",
"pgq",
"postgresql",
"queue",
"transactional"
],
"repository": {
"type": "git",
"url": "https://github.com/kristok/node-pgq.git"
},
"author": "Kristo Kaiv",
"license": "ISC",
"dependencies": {
"async": "^1.4.2",
"lodash": "^3.10.0",
"pg": "^4.4.1"
},
"devDependencies": {
"istanbul": "^0.3.18",
"mocha": "^2.2.5",
"proxyquire": "^1.6.0",
"sinon": "^1.15.4"
}
}