-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
29 lines (29 loc) · 936 Bytes
/
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
{
"name": "@zaptic-external/zorm",
"version": "1.1.9",
"description": "ZORM - a typed postgres ORM without classes",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"license": "MIT",
"repository": "https://github.com/Zaptic/zorm",
"scripts": {
"prettier": "prettier --config prettier.config.js '**' --write",
"test": "mocha --colors --require source-map-support/register --ui bdd $(find dist/ -name '*.test.js')",
"tsc": "tsc"
},
"dependencies": {
"@zaptic-external/pg-plus": "^1.0.5",
"lodash.snakecase": "4.1.1"
},
"devDependencies": {
"@types/chai": "^4.3.11",
"@types/lodash.snakecase": "4.1.6",
"@types/mocha": "^10.0.6",
"@types/pg": "7.14.11",
"chai": "4.4.1",
"mocha": "^10.2.0",
"prettier": "2.2.1",
"source-map-support": "0.5.19",
"typescript": "4.2.3"
}
}