-
Notifications
You must be signed in to change notification settings - Fork 22
/
Copy pathpackage.json
38 lines (38 loc) · 867 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
{
"name": "pg-query-parser",
"version": "0.3.0",
"description": "The real PostgreSQL query parser",
"homepage": "https://github.com/zhm/pg-query-parser",
"main": "src/index.js",
"scripts": {
"test": "mocha test/test.js",
"lint": "eslint src",
"check-deps": "ncu",
"update-deps": "ncu -u"
},
"author": "Zac McCormick <[email protected]> (https://github.com/zhm)",
"license": "BSD-3-Clause",
"repository": {
"type": "git",
"url": "git://github.com/zhm/pg-query-parser.git"
},
"devDependencies": {
"chai": "^4.3.4",
"eslint": "^7.32.0",
"glob": "^7.2.0",
"mocha": "^9.1.2",
"npm-check-updates": "^11.8.5"
},
"dependencies": {
"lodash": "^4.17.21",
"pg-query-native": "^1.3.1"
},
"keywords": [
"sql",
"postgres",
"postgresql",
"pg",
"query",
"database"
]
}