@golemio/errors
Advanced tools
Comparing version 0.0.4-dev.78584454 to 0.0.4
150
package.json
{ | ||
"name": "@golemio/errors", | ||
"version": "0.0.4-dev.78584454", | ||
"description": "Library of Error classes of the Data Platform System", | ||
"main": "dist/index.js", | ||
"types": "dist/index.d.ts", | ||
"scripts": { | ||
"prepublishOnly": "tsc", | ||
"build": "tsc", | ||
"build-watch": "tsc --watch --preserveWatchOutput", | ||
"test": "mocha --check-leaks --timeout 60000 -r ts-node/register -r dotenv/config --recursive test/*.test.ts --exit", | ||
"test-debug": "mocha --inspect-brk=9230 -b --check-leaks --timeout 60000 -r ts-node/register -r dotenv/config --recursive test/*.test.ts --exit", | ||
"code-coverage": "nyc mocha --check-leaks --timeout 60000 -r ts-node/register -r source-map-support/register -r dotenv/config --recursive test/*.test.ts --exit", | ||
"tslint": "tslint -p .", | ||
"generate-docs": "npx typedoc --readme \"./README.MD\" --name \"Golemio Errors\" --mode file --out docs/typedoc src" | ||
}, | ||
"keywords": [], | ||
"author": "Operator ICT, a.s.", | ||
"license": "MIT", | ||
"repository": { | ||
"type": "git", | ||
"url": "https://gitlab.com/operator-ict/golemio/code/errors" | ||
}, | ||
"devDependencies": { | ||
"@types/chai": "^4.1.7", | ||
"@types/chai-as-promised": "^7.1.0", | ||
"@types/debug": "^4.1.1", | ||
"@types/mocha": "^5.2.5", | ||
"@types/node": "^12.6.8", | ||
"@types/sinon": "^7.0.13", | ||
"chai": "^4.2.0", | ||
"chai-as-promised": "^7.1.1", | ||
"husky": "^3.0.0", | ||
"mocha": "^5.2.0", | ||
"nyc": "^14.1.1", | ||
"sinon": "^7.2.3", | ||
"ts-node": "^8.3.0", | ||
"tslint": "5.11.0", | ||
"typedoc": "^0.14.2", | ||
"typescript": "3.2.1" | ||
}, | ||
"dependencies": { | ||
"debug": "^4.1.1", | ||
"dotenv": "^8.0.0", | ||
"winston": "^3.2.1" | ||
}, | ||
"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": "tslint -p ." | ||
} | ||
} | ||
"name": "@golemio/errors", | ||
"version": "0.0.4", | ||
"description": "Library of Error classes of the Data Platform System", | ||
"main": "dist/index.js", | ||
"types": "dist/index.d.ts", | ||
"scripts": { | ||
"prepublishOnly": "tsc", | ||
"build": "tsc", | ||
"build-watch": "tsc --watch --preserveWatchOutput", | ||
"test": "mocha --check-leaks --timeout 60000 -r ts-node/register -r dotenv/config --recursive test/*.test.ts --exit", | ||
"test-debug": "mocha --inspect-brk=9230 -b --check-leaks --timeout 60000 -r ts-node/register -r dotenv/config --recursive test/*.test.ts --exit", | ||
"code-coverage": "nyc mocha --check-leaks --timeout 60000 -r ts-node/register -r source-map-support/register -r dotenv/config --recursive test/*.test.ts --exit", | ||
"tslint": "tslint -p .", | ||
"generate-docs": "npx typedoc --readme \"./README.MD\" --name \"Golemio Errors\" --mode file --out docs/typedoc src" | ||
}, | ||
"keywords": [], | ||
"author": "Operator ICT, a.s.", | ||
"license": "MIT", | ||
"repository": { | ||
"type": "git", | ||
"url": "https://gitlab.com/operator-ict/golemio/code/errors" | ||
}, | ||
"devDependencies": { | ||
"@types/chai": "^4.1.7", | ||
"@types/chai-as-promised": "^7.1.0", | ||
"@types/debug": "^4.1.1", | ||
"@types/mocha": "^5.2.5", | ||
"@types/node": "^12.6.8", | ||
"@types/sinon": "^7.0.13", | ||
"chai": "^4.2.0", | ||
"chai-as-promised": "^7.1.1", | ||
"husky": "^3.0.0", | ||
"mocha": "^5.2.0", | ||
"nyc": "^14.1.1", | ||
"sinon": "^7.2.3", | ||
"ts-node": "^8.3.0", | ||
"tslint": "5.11.0", | ||
"typedoc": "^0.14.2", | ||
"typescript": "3.2.1" | ||
}, | ||
"dependencies": { | ||
"debug": "^4.1.1", | ||
"dotenv": "^8.0.0", | ||
"winston": "^3.2.1" | ||
}, | ||
"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": "tslint -p ." | ||
} | ||
} | ||
} |
26071