-
Notifications
You must be signed in to change notification settings - Fork 21
/
package.json
51 lines (51 loc) · 1009 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": "fortune-postgres",
"description": "Postgres adapter for Fortune.",
"version": "1.6.11",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/fortunejs/fortune-postgres"
},
"scripts": {
"lint": "eslint lib test",
"test": "npm run lint && node test",
"postpublish": "git tag `npm v fortune-postgres version` && git push origin --tags"
},
"main": "./lib/index.js",
"dependencies": {
"pg": "^8.7.1"
},
"optionalDependencies": {
"pg-native": "^3.0.0"
},
"devDependencies": {
"eslint": "^8.2.0",
"eslint-config-boss": "^1.0.6",
"fortune": "^5.5.18",
"mkdirp": "^1.0.4",
"rimraf": "^3.0.2",
"tapdance": "^5.1.1"
},
"files": [
"lib/",
"LICENSE"
],
"eslintConfig": {
"extends": "boss",
"rules": {
"strict": 0,
"indent": 0
}
},
"engines": {
"node": ">=10"
},
"keywords": [
"fortune",
"postgres",
"postgresql",
"sql",
"adapter"
]
}