-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
45 lines (45 loc) · 886 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
41
42
43
44
45
{
"name": "quick-pg",
"version": "0.0.1",
"description": "📦 A key value postgres database",
"main": "build/pg.js",
"scripts": {
"test": "jest",
"format": "prettier --write **/*.{js,ts,jsx,tsx,html,json}",
"build": "rimraf build && tsc",
"build:docs": "jsdoc2md build/pg.js"
},
"keywords": [
"postgres",
"quickpostgres",
"keyv",
"quick.db",
"postgressql",
"sql",
"orm"
],
"author": "adoniswoah",
"license": "MIT",
"dependencies": {
"@types/pg": "^8.6.1",
"dotenv": "^10.0.0",
"pg": "^8.7.1"
},
"devDependencies": {
"@types/jest": "^27.0.2",
"jest": "^27.3.1",
"ts-jest": "^27.0.7",
"typescript": "^4.4.4"
},
"jest": {
"transform": {
".(ts|tsx)": "<rootDir>/node_modules/ts-jest/preprocessor.js"
},
"testRegex": "(/__tests__/.*|\\.(test|spec))\\.(ts|tsx|js)$",
"moduleFileExtensions": [
"ts",
"tsx",
"js"
]
}
}