-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 1023 Bytes
/
package.json
File metadata and controls
39 lines (39 loc) · 1023 Bytes
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
{
"name": "libpq-connection-string",
"version": "0.1.0",
"description": "libpq-compatible connection string parsing",
"keywords": [
"postgresql"
],
"bugs": "https://github.com/charmander/libpq-connection-string/issues",
"license": "ISC",
"author": {
"name": "Charmander",
"email": "~@charmander.me",
"url": "https://charmander.me/"
},
"files": [
"index.mjs",
"add-env-defaults.mjs",
"add-service-defaults-sync.mjs",
"internal/has-unpaired-surrogates.mjs",
"internal/index-of-any.mjs",
"internal/options.mjs",
"internal/uri-decode-no-nul.mjs",
"internal/service-files/delimited-reader.mjs",
"internal/service-files/path-iterator.mjs",
"internal/service-files/reader.mjs"
],
"exports": {
".": "./index.mjs",
"./add-env-defaults": "./add-env-defaults.mjs",
"./add-service-defaults-sync": "./add-service-defaults-sync.mjs"
},
"repository": {
"type": "git",
"url": "https://github.com/charmander/libpq-connection-string"
},
"scripts": {
"test": "node test/index.mjs"
}
}