-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
56 lines (56 loc) · 1.37 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
53
54
55
56
{
"name": "node-pg-crud",
"version": "1.1.1",
"description": "Easy-to-use PostgreSQL CRUD Handlers + Utilities",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 0",
"build": "tsc",
"lint": "eslint . --ext .ts",
"format": "eslint . --ext .ts --fix",
"prepare": "npm run build",
"prepublishOnly": "npm test && npm run lint",
"preversion": "npm run lint",
"version": "npm run format && git add -A .",
"postversion": "git push && git push --tags"
},
"files": [
"lib/**/*"
],
"repository": {
"type": "git",
"url": "git+https://github.com/howard-e/node-pg-crud.git"
},
"keywords": [
"node",
"postgres",
"pg",
"node-pg",
"crud",
"wrapper",
"easy",
"typescript",
"postgresql"
],
"author": "Howard Edwards",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/howard-e/node-pg-crud/issues"
},
"homepage": "https://github.com/howard-e/node-pg-crud#readme",
"dependencies": {
"dotenv": "^8.2.0",
"lodash.isempty": "^4.4.0",
"pg": "^8.5.1"
},
"devDependencies": {
"@types/jest": "^26.0.19",
"@typescript-eslint/eslint-plugin": "^4.11.1",
"@typescript-eslint/parser": "^4.11.1",
"eslint": "^7.17.0",
"jest": "^26.6.3",
"ts-jest": "^26.4.4",
"typescript": "^4.1.3"
}
}