-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.6 KB
/
package.json
File metadata and controls
57 lines (57 loc) · 1.6 KB
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
{
"name": "@tediousjs/connection-string",
"version": "1.0.0",
"description": "SQL ConnectionString parser",
"repository": {
"type": "git",
"url": "https://github.com/tediousjs/connection-string"
},
"bugs": {
"url": "https://github.com/tediousjs/connection-string/issues"
},
"homepage": "https://github.com/tediousjs/connection-string#readme",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"scripts": {
"prepare": "tsc",
"build": "tsc",
"lint": "eslint ./src ./test",
"test": "tsx --test test/**/*.test.ts",
"test:coverage": "c8 --reporter=cobertura -- tsx --test test/**/*.test.ts test/*.test.ts",
"test:workflow": "npm run test --silent"
},
"keywords": [
"mssql",
"tsql",
"connectionstring"
],
"author": "Dan Hensby <git@hens.by>",
"license": "MIT",
"files": [
"/lib/**"
],
"publishConfig": {
"access": "public"
},
"devDependencies": {
"@commitlint/cli": "^20.5.0",
"@commitlint/config-conventional": "^20.5.0",
"@eslint/js": "^10.0.1",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/commit-analyzer": "^13.0.1",
"@semantic-release/git": "^10.0.1",
"@semantic-release/github": "^12.0.6",
"@semantic-release/npm": "^13.1.5",
"@semantic-release/release-notes-generator": "^14.1.0",
"@stylistic/eslint-plugin": "^5.0.0",
"@tsconfig/node20": "^20.1.5",
"@types/node": "^20.19.0",
"c8": "^11.0.0",
"eslint": "^10.0.2",
"nyc": "^18.0.0",
"semantic-release": "^25.0.3",
"tsx": "^4.19.4",
"typescript": "^5.8.3",
"typescript-eslint": "^8.33.1"
}
}