-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
37 lines (37 loc) · 952 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
{
"name": "parse-connection-url",
"homepage": "https://github.com/jdziat/parse-connection-url",
"author": "Jordan Dziat <[email protected]> (http://jordandziat.com)",
"license": "MIT",
"version": "1.3.4",
"description": "A Nodejs module that allows you to parse connection strings/objects in a consistent way. ",
"main": "src/index.js",
"scripts": {
"test": "mocha",
"docs": "jsdoc --verbose -R ./readme.md -d ./docs/ -t ./node_modules/ink-docstrap/template/ src/index.js src/schema.js"
},
"keywords": [
"http",
"solr",
"knex",
"pg",
"connection",
"string",
"parse"
],
"dependencies": {
"lodash": "^4.17.14",
"port-numbers": "^4.0.13",
"watch": "^1.0.2",
"joi": "^14.3.1"
},
"publishConfig": {
"registry": "https://registry.npmjs.org/"
},
"devDependencies": {
"chai": "^4.2.0",
"ink-docstrap": "^1.3.2",
"jsdoc": "^3.6.2",
"mocha": "^6.1.4"
}
}