ts-firebird
Version:
Promisify node-firebird
64 lines (63 loc) • 1.51 kB
JSON
{
"name": "ts-firebird",
"version": "1.1.2",
"description": "Promisify node-firebird",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"scripts": {
"format": "prettier --write \"src/**/*.ts\"",
"lint": "eslint \"{src,apps,libs,test}/**/*.ts\" --fix",
"test": "jest",
"prebuild": "rm -rf lib",
"build": "tsc",
"prepare": "npm run build",
"prepublishOnly": "npm test && npm run lint",
"preversion": "npm run lint",
"version": "npm run format && git add -A src",
"postversion": "git push && git push --tags"
},
"repository": {
"type": "git",
"url": "git@github.com:last1971/ts-firebird.git"
},
"files": [
"lib/**/*"
],
"keywords": [
"type-script",
"node-firebird"
],
"author": "Vladimir Lastovka",
"license": "ISC",
"devDependencies": {
"@types/jest": "^29.5.1",
"@typescript-eslint/eslint-plugin": "^5.59.7",
"eslint": "^8.41.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-prettier": "^4.2.1",
"jest": "^29.5.0",
"prettier": "^2.8.8",
"ts-jest": "^29.1.0",
"typescript": "^5.0.4"
},
"jest": {
"moduleFileExtensions": [
"js",
"json",
"ts"
],
"rootDir": "src",
"testRegex": ".*\\.spec\\.ts$",
"transform": {
"^.+\\.(t|j)s$": "ts-jest"
},
"collectCoverageFrom": [
"**/*.(t|j)s"
],
"coverageDirectory": "../coverage",
"testEnvironment": "node"
},
"dependencies": {
"node-firebird": "^1.1.5"
}
}