-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 991 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
30
31
32
33
34
35
36
37
38
39
40
{
"name": "oqm",
"version": "0.5.3",
"description": "node persistence library",
"main": "./dist/cjs",
"types": "./dist/cjs/index.d.ts",
"repository": " git@github.com:calitrix/oqm.git",
"author": "Johannes Klose <jklose@calitrix.com>",
"license": "MIT",
"prettier": {
"singleQuote": true,
"semi": false,
"trailingComma": "es5"
},
"scripts": {
"dev": "node scripts/build.mjs --watch",
"test": "jest",
"build": "node scripts/build.mjs",
"pre-release": "tsc --noEmit && yarn test && yarn build",
"release": "node scripts/release.mjs"
},
"devDependencies": {
"@tsconfig/node16": "^1.0.3",
"@types/jest": "^27.5.1",
"@types/pg": "^8.6.5",
"esbuild": "^0.14.49",
"jest": "^28.1.0",
"pg": "^8.4.1",
"prettier": "^2.6.2",
"ts-jest": "^28.0.2",
"typescript": "^4.6.4"
},
"peerDependencies": {
"pg": "^8.4.1"
},
"dependencies": {
"runtypes": "^6.5.1"
},
"packageManager": "yarn@3.2.1"
}