-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 786 Bytes
/
Copy pathpackage.json
File metadata and controls
33 lines (33 loc) · 786 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
{
"name": "postqueue",
"version": "2.0.2",
"description": "Simple, powerful postgres-backed queue",
"repository": "https://github.com/meyer9/postqueue",
"author": "meyer9 <julianmeyer2000@gmail.com>",
"license": "MIT",
"devDependencies": {
"@types/chai": "^4.2.7",
"@types/debug": "^4.1.5",
"@types/mocha": "^5.2.7",
"@types/node": "^13.1.6",
"chai": "^4.2.0",
"mocha": "^7.0.0",
"ts-node": "^8.6.1",
"typescript": "^3.7.4"
},
"files": [
"dist/**/*"
],
"scripts": {
"build": "tsc",
"test": "mocha -r ts-node/register lib/**/*.spec.ts"
},
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"dependencies": {
"debug": "^4.1.1",
"es6-promise": "^4.2.8",
"knex": "^0.20.7",
"pg": "^7.17.1"
}
}