-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
33 lines (33 loc) · 1.29 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
{
"name": "pgorm",
"version": "1.0.8",
"description": "ORM to use with your existing pg driver code. Write new code using ORM essentials and make it work with existing code without modifying it.",
"main": "dist/index.js",
"scripts": {
"build": "tsc -p tsconfig.json",
"watch": "tsc -p tsconfig.json --watch",
"test": "npm run build && jest",
"coverage": "jest --coverage",
"docs:html": "jsdoc -c ./jsdoc.json",
"docs:md": "jsdoc2md --files ./src/**/*.ts --configure ./jsdoc2md.json > ./README.md",
"build:docs": "cp INSTALL.md README.md && npm run build:doc",
"publish-patch": "npm run build:docs && git add . && git commit -m 'docs & version: update' && git push && npm version patch && npm publish"
},
"author": "Abdullah Yasir",
"displayName": "PG MODELS ORM",
"license": "ISC",
"devDependencies": {
"@babel/cli": "^7.17.10",
"@babel/core": "^7.18.0",
"@babel/preset-env": "^7.18.0",
"@babel/preset-typescript": "^7.17.12",
"@types/node": "^17.0.30",
"better-docs": "^2.7.2",
"jest": "^28.0.3",
"jsdoc": "^3.6.10",
"jsdoc-babel": "^0.5.0",
"jsdoc-to-markdown": "^7.1.1",
"pg": "^8.7.3",
"typescript": "^4.7.2"
}
}