63 lines
1.7 KiB
JSON
63 lines
1.7 KiB
JSON
{
|
|
"name": "@tediousjs/connection-string",
|
|
"version": "1.1.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",
|
|
"exports": {
|
|
".": {
|
|
"types": "./lib/index.d.ts",
|
|
"default": "./lib/index.js"
|
|
}
|
|
},
|
|
"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/node22": "^22.0.5",
|
|
"@types/node": "^20.19.0",
|
|
"c8": "^11.0.0",
|
|
"eslint": "^10.0.2",
|
|
"semantic-release": "^25.0.3",
|
|
"tsx": "^4.19.4",
|
|
"typescript": "^6.0.2",
|
|
"typescript-eslint": "^8.33.1"
|
|
}
|
|
}
|