@golemio/errors
Advanced tools
Comparing version 2.0.4-rc.1284709622 to 2.0.4-rc.1288138679
160
package.json
{ | ||
"name": "@golemio/errors", | ||
"version": "2.0.4-rc.1284709622", | ||
"description": "Library of Error classes of the Golemio Data Platform System", | ||
"main": "dist/index.js", | ||
"types": "dist/index.d.ts", | ||
"scripts": { | ||
"prepublishOnly": "tsc", | ||
"build": "tsc", | ||
"build-watch": "tsc --watch --preserveWatchOutput", | ||
"test": "cross-env NODE_ENV=test mocha --exit --check-leaks --timeout 120000 -r ts-node/register -r dotenv/config 'test/**/*.test.ts'", | ||
"test-debug": "run-s 'test -- --inspect-brk=9230'", | ||
"code-coverage": "nyc run-s 'test -- -r source-map-support/register'", | ||
"lint": "tslint -p .", | ||
"generate-docs": "typedoc --out docs/typedoc src" | ||
}, | ||
"keywords": [], | ||
"author": "Operator ICT, a.s.", | ||
"license": "MIT", | ||
"repository": { | ||
"type": "git", | ||
"url": "https://gitlab.com/operator-ict/golemio/code/errors" | ||
}, | ||
"engines": { | ||
"node": ">=20.0.0", | ||
"npm": ">=8.0.0" | ||
}, | ||
"devDependencies": { | ||
"@types/chai": "^4.2.14", | ||
"@types/chai-as-promised": "^7.1.3", | ||
"@types/debug": "^4.1.5", | ||
"@types/mocha": "^10.0.1", | ||
"@types/node": "^20.12.7", | ||
"@types/sinon": "^9.0.8", | ||
"chai": "^4.2.0", | ||
"chai-as-promised": "^7.1.1", | ||
"cross-env": "^7.0.3", | ||
"husky": "^4.3.0", | ||
"mocha": "^10.2.0", | ||
"npm-run-all": "^4.1.5", | ||
"nyc": "^15.1.0", | ||
"sinon": "^9.2.1", | ||
"ts-node": "^10.9.1", | ||
"tslint": "5.11.0", | ||
"typedoc": "^0.24.8", | ||
"typescript": "5.1.3" | ||
}, | ||
"dependencies": { | ||
"debug": "^4.2.0", | ||
"dotenv": "^8.2.0" | ||
}, | ||
"nyc": { | ||
"check-coverage": true, | ||
"extension": [ | ||
".ts", | ||
".tsx" | ||
], | ||
"exclude": [ | ||
"**/*.d.ts", | ||
"dist", | ||
"**/*.test.ts", | ||
"coverage", | ||
"docs", | ||
"node_modules", | ||
"src/Logger.ts" | ||
], | ||
"reporter": [ | ||
"text", | ||
"lcov" | ||
], | ||
"all": true, | ||
"lines": 0, | ||
"statements": 0, | ||
"functions": 0, | ||
"branches": 0 | ||
}, | ||
"husky": { | ||
"hooks": { | ||
"pre-commit": "npm run lint" | ||
} | ||
} | ||
"name": "@golemio/errors", | ||
"version": "2.0.4-rc.1288138679", | ||
"description": "Library of Error classes of the Golemio Data Platform System", | ||
"main": "dist/index.js", | ||
"types": "dist/index.d.ts", | ||
"scripts": { | ||
"prepublishOnly": "tsc", | ||
"build": "tsc", | ||
"build-watch": "tsc --watch --preserveWatchOutput", | ||
"test": "cross-env NODE_ENV=test mocha --exit --check-leaks --timeout 120000 -r ts-node/register -r dotenv/config 'test/**/*.test.ts'", | ||
"test-debug": "run-s 'test -- --inspect-brk=9230'", | ||
"code-coverage": "nyc run-s 'test -- -r source-map-support/register'", | ||
"lint": "tslint -p .", | ||
"generate-docs": "typedoc --out docs/typedoc src" | ||
}, | ||
"keywords": [], | ||
"author": "Operator ICT, a.s.", | ||
"license": "MIT", | ||
"repository": { | ||
"type": "git", | ||
"url": "https://gitlab.com/operator-ict/golemio/code/errors" | ||
}, | ||
"engines": { | ||
"node": ">=20.0.0", | ||
"npm": ">=8.0.0" | ||
}, | ||
"devDependencies": { | ||
"@types/chai": "^4.2.14", | ||
"@types/chai-as-promised": "^7.1.3", | ||
"@types/debug": "^4.1.5", | ||
"@types/mocha": "^10.0.1", | ||
"@types/node": "^20.12.7", | ||
"@types/sinon": "^9.0.8", | ||
"chai": "^4.2.0", | ||
"chai-as-promised": "^7.1.1", | ||
"cross-env": "^7.0.3", | ||
"husky": "^4.3.0", | ||
"mocha": "^10.2.0", | ||
"npm-run-all": "^4.1.5", | ||
"nyc": "^15.1.0", | ||
"sinon": "^9.2.1", | ||
"ts-node": "^10.9.1", | ||
"tslint": "5.11.0", | ||
"typedoc": "^0.24.8", | ||
"typescript": "5.1.3" | ||
}, | ||
"dependencies": { | ||
"debug": "^4.2.0", | ||
"dotenv": "^8.2.0" | ||
}, | ||
"nyc": { | ||
"check-coverage": true, | ||
"extension": [ | ||
".ts", | ||
".tsx" | ||
], | ||
"exclude": [ | ||
"**/*.d.ts", | ||
"dist", | ||
"**/*.test.ts", | ||
"coverage", | ||
"docs", | ||
"node_modules", | ||
"src/Logger.ts" | ||
], | ||
"reporter": [ | ||
"text", | ||
"lcov" | ||
], | ||
"all": true, | ||
"lines": 0, | ||
"statements": 0, | ||
"functions": 0, | ||
"branches": 0 | ||
}, | ||
"husky": { | ||
"hooks": { | ||
"pre-commit": "npm run lint" | ||
} | ||
} | ||
} |
38464