-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
65 lines (65 loc) · 1.74 KB
/
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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
{
"name": "@grimen/connection-uri",
"version": "0.1.1",
"description": "A robust connection URI parser/stringifier - for Node/JavaScript.",
"keywords": [
"connection-uri",
"connection-url",
"database-uri",
"database-url",
"server-uri",
"server-url",
"connection",
"database",
"server",
"uri",
"url",
"serializer",
"deserializer",
"packer",
"unpacker",
"stringifier",
"parser",
"multi-host"
],
"repository": {
"type": "git",
"url": "git+https://github.com/grimen/js-connection-uri.git"
},
"bugs": {
"url": "https://github.com/grimen/js-connection-uri/issues"
},
"homepage": "https://github.com/grimen/js-connection-uri#readme",
"author": "Jonas Grimfelt <[email protected]> (https://github.com/grimen)",
"license": "MIT",
"main": "index.js",
"scripts": {
"test": "npx jest",
"test-ci": "npx jest --runInBand --forceExit --detectOpenHandles --coverage",
"test-dev": "npx jest --watch",
"validate": "npx eslint \"**/*.js\"",
"release": "./bin/release",
"coverage": "npx jest --coverage",
"coverage-codecov": "npx codecov"
},
"engines": {
"node": ">=10"
},
"dependencies": {
"@grimen/mybad": "^0.2.3",
"query-string": "^6.13.8"
},
"devDependencies": {
"babel-eslint": "^10.1.0",
"codecov": "^3.8.1",
"eslint": "^7.19.0",
"jest": "^26.6.3",
"jest-tobetype": "^1.2.3"
},
"jest": {
"bail": true,
"verbose": true,
"testRegex": "test_.*\\.js",
"testEnvironment": "node"
}
}