-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
54 lines (54 loc) · 1.34 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
{
"name": "quickpostgres",
"version": "3.0.2",
"description": "An easy, beginner-friendly PostgreSQL database wrapper similar to quick.db.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "tsc",
"prettify": "prettier .",
"prettier": "prettier --check .",
"lint": "eslint .",
"test": "node tests/test.js",
"prepare": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/GodderE2D/quickpostgres.git"
},
"keywords": [
"easy",
"beginner",
"database",
"postgres",
"postgresql",
"dot-notation",
"hacktoberfest",
"beginner-friendly",
"quickdb",
"quickmongo"
],
"author": "GodderE2D",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/GodderE2D/quickpostgres/issues"
},
"homepage": "https://github.com/GodderE2D/quickpostgres#readme",
"dependencies": {
"lodash": "^4.17.21",
"pg": "^8.7.1"
},
"devDependencies": {
"@types/lodash": "^4.14.175",
"@types/node": "^16.10.9",
"@types/pg": "^8.6.1",
"@typescript-eslint/eslint-plugin": "^5.0.0",
"@typescript-eslint/parser": "^5.0.0",
"dotenv": "^10.0.0",
"eslint": "^8.0.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prefer-arrow": "^1.2.3",
"prettier": "^2.4.1",
"typescript": "^4.4.4"
}
}