-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1.12 KB
/
package.json
File metadata and controls
41 lines (41 loc) · 1.12 KB
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
{
"name": "@drdgvhbh/postgres-error-codes",
"version": "0.0.6",
"description": "Postgres Error Codes",
"main": "lib/index.js",
"keywords": [
"postgres",
"nodejs",
"error",
"codes"
],
"author": "Ryan Lee <ryanleecode@gmail.com> (https://rlee.dev)",
"repository": {
"type": "git",
"url": "git+https://github.com/drdgvhbh/postgres-error-codes.git"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/drdgvhbh/postgres-error-codes/issues"
},
"homepage": "https://github.com/drdgvhbh/postgres-error-codes#readme",
"dependencies": {},
"scripts": {
"prepublishOnly": "npm run clean && npm run build",
"prepare": "npm run build",
"clean": "rimraf lib",
"build": "tsc",
"lint": "eslint \"./**/*.{ts,js}\"",
"lint:fix": "eslint --fix \"./**/*.{ts,js}\""
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^2.13.0",
"@typescript-eslint/parser": "^2.13.0",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.9.0",
"eslint-plugin-prettier": "^3.1.2",
"prettier": "^1.19.1",
"rimraf": "^3.0.0",
"typescript": "^3.7.4"
}
}