UNPKG

node-jt400

Version:
74 lines (73 loc) 1.98 kB
{ "name": "node-jt400", "author": "Tryggingamiðstöðin <bt.hugbunadargerd@tm.is>", "version": "5.0.4", "description": "JT400 (IBM Toolbox) for NodeJS", "main": "dist/index.js", "types": "dist/index.d.ts", "repository": { "type": "git", "url": "git://github.com/tryggingamidstodin/node-jt400.git" }, "files": [ "dist", "java/lib" ], "scripts": { "format-verify": "prettier --check ./ts-src/**/*.ts", "format": "prettier --write ./ts-src/**/*.ts", "lint": "tslint --project .", "test": "mocha -r source-map-support/register --exit dist/unit-test -t 1000", "integration-test": "mocha --parallel -r source-map-support/register --exit dist/integration-test -t 10000", "build": "tsc", "clean": "rm -rf dist/", "build-dev": "tsc --watch", "test-dev": "mocha dist/test --watch", "build-all": "npm run build && npm run build-java", "build-java": "ant archive -buildfile ./java", "ci": "npm run clean && npm run build && npm run test && npm run integration-test" }, "keywords": [ "typescript", "javascript", "as400", "IBM", "java", "db2", "jdbc", "jt400" ], "license": "MIT", "bugs": { "url": "https://github.com/tryggingamidstodin/node-jt400/issues" }, "engines": { "node": ">=8" }, "dependencies": { "flushwritable": "^1.0.0", "java": "^0.14.0", "JSONStream": "^1.3.2", "oops-error": "^2.5.0" }, "devDependencies": { "@types/chai": "^4.3.11", "@types/mocha": "^10.0.6", "@types/node": "^20.10.4", "chai": "^4.3.10", "husky": "^8.0.3", "mocha": "^10.2.0", "prettier": "^2.3.2", "source-map-support": "^0.5.21", "stream-equal": "^2.0.1", "tslint": "^6.1.3", "tslint-config-standard": "^9.0.0", "typescript": "^5.3.3" }, "husky": { "hooks": { "pre-commit": "npm run lint && npm run format-verify", "pre-push": "npm run build && npm run test" } } }