-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
51 lines (51 loc) · 992 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
46
47
48
49
50
51
{
"name": "pev2-cli",
"description": "Run the PostgreSQL Explain Visualizer 2 (pev2) from the command line.",
"version": "1.25.0",
"preferGlobal": true,
"bin": {
"pev2": "./cli.js"
},
"main": "index.js",
"files": [
"cli.js",
"index.js",
"inject.js",
"build.sh",
"lib"
],
"keywords": [
"postgresql",
"postgres",
"pev2",
"explain",
"query",
"visualizer",
"cli",
"sql"
],
"author": "Jannis R <[email protected]>",
"homepage": "https://github.com/derhuerst/pev2-cli",
"repository": "derhuerst/pev2-cli",
"bugs": "https://github.com/derhuerst/pev2-cli/issues",
"license": "ISC",
"engines": {
"node": ">=12"
},
"dependencies": {
"accepts": "^1.3.7",
"execa": "^5.1.1",
"finalhandler": "^1.1.2",
"mri": "^1.1.6",
"open": "^8.2.1"
},
"devDependencies": {
"eslint": "^7.9.0"
},
"scripts": {
"build": "./build.sh",
"test": "echo todo; exit 1",
"lint": "eslint .",
"prepublishOnly": "npm run build && npm run lint && npm test"
}
}