-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 1.02 KB
/
package.json
File metadata and controls
39 lines (39 loc) · 1.02 KB
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
{
"name": "@fmtk/pgdb",
"private": false,
"version": "0.9.1",
"description": "Opinionated micro-ORM for postgres",
"main": "dist/index.js",
"repository": "https://github.com/futurematik/pgdb",
"author": "Gordon Leigh <gordon.leigh@futurematik.co.uk>",
"license": "MIT",
"dependencies": {
"debug": "^3.1.0",
"lodash": "^4.17.10",
"pg": "^7.4.3"
},
"devDependencies": {
"@types/debug": "^0.0.30",
"@types/jest": "^23.3.2",
"@types/lodash": "^4.14.115",
"@types/pg": "^7.4.10",
"jest": "^23.6.0",
"ts-jest": "^23.1.4",
"tslint": "^5.11.0",
"typescript": "^3.0.1"
},
"scripts": {
"build": "npm run clean && npm run lint && tsc",
"bump": "npm version minor && npm publish",
"bumpfix": "npm version patch && npm publish",
"clean": "rm -rf dist/",
"lint": "tslint --project .",
"postversion": "git push --follow-tags",
"prepare": "npm run build",
"preversion": "npm run build",
"test": "jest"
},
"engines": {
"node": ">=6.4.0"
}
}