-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
53 lines (53 loc) · 1.28 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
{
"name": "connection-string",
"version": "4.4.0",
"description": "Advanced URL Connection String parser + generator.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"browser": {
"./dist/inspect.js": "./dist/browser/inspect.js"
},
"scripts": {
"build": "tsc -p src && tsc -p test",
"lint": "tslint --fix ./src/**/*.ts ./test/**/*.ts",
"test": "npm run lint && npm run build && nyc mocha -r ts-node/register test/**/*.spec.ts"
},
"files": [
"dist"
],
"homepage": "https://github.com/vitaly-t/connection-string",
"repository": {
"type": "git",
"url": "https://github.com/vitaly-t/connection-string.git"
},
"bugs": {
"url": "https://github.com/vitaly-t/connection-string/issues",
"email": "[email protected]"
},
"keywords": [
"connection",
"string",
"parser",
"generator"
],
"author": {
"name": "Vitaly Tomilov",
"email": "[email protected]"
},
"license": "MIT",
"engines": {
"node": ">=14"
},
"devDependencies": {
"@types/chai": "4.3.8",
"@types/mocha": "10.0.2",
"@types/node": "20.8.6",
"chai": "4.3.10",
"mocha": "10.2.0",
"mocha-lcov-reporter": "1.3.0",
"nyc": "15.1.0",
"ts-node": "10.9.1",
"tslint": "6.1.3",
"typescript": "5.2.2"
}
}