overleaf/libraries/o-error/package.json

50 lines
1.8 KiB
JSON
Raw Normal View History

2018-03-07 11:42:39 -05:00
{
2019-07-08 06:35:29 -04:00
"name": "@overleaf/o-error",
"version": "3.4.0",
2020-05-15 11:50:37 -04:00
"description": "Light-weight helpers for handling JavaScript Errors in node.js and the browser. Helps with long stack traces, Error subclasses, wrapping internal errors (causes), and attaching extra data to errors for logging.",
2020-05-15 12:18:01 -04:00
"keywords": [
"browser",
"node",
"error",
"long stack trace",
"stack trace",
"stack",
"cause",
"verror"
],
"main": "index.js",
2020-05-15 12:18:01 -04:00
"files": [
"index.js",
"index.d.ts"
2020-05-15 12:18:01 -04:00
],
2018-03-07 11:42:39 -05:00
"scripts": {
"build": "npm run --silent typecheck && npm run --silent test && npm run --silent declaration:build && npm run --silent update-readme",
"declaration:build": "rm -f index.d.ts && tsc --allowJs --declaration --emitDeclarationOnly --moduleResolution node --target ES6 index.js",
"declaration:check": "git diff --exit-code -- index.d.ts",
"lint": "eslint --max-warnings 0 --format unix .",
"lint:fix": "eslint --fix .",
"prepublishOnly": "npm run --silent declaration:build && npm run --silent declaration:check",
2020-04-28 15:38:34 -04:00
"test": "mocha",
2020-05-15 12:18:01 -04:00
"test:coverage": "nyc --reporter=lcov --reporter=text-summary npm run test",
"typecheck": "tsc --allowJs --checkJs --noEmit --moduleResolution node --strict --target ES6 *.js test/**/*.js",
"update-readme": "doc/update-readme.js",
"format": "prettier --list-different $PWD/'**/*.js'",
"format:fix": "prettier --write $PWD/'**/*.js'",
"test:ci": "npm run typecheck && npm run test"
2018-03-07 11:42:39 -05:00
},
2018-04-21 18:24:23 -04:00
"author": "Overleaf (https://www.overleaf.com)",
"license": "MIT",
2019-07-08 08:22:49 -04:00
"repository": "github:overleaf/o-error",
2018-03-07 11:42:39 -05:00
"devDependencies": {
"@types/chai": "^4.3.0",
"@types/node": "^14.18.1",
"chai": "^4.3.6",
"jsdoc-to-markdown": "^7.1.0",
2020-04-29 15:58:10 -04:00
"markdown-toc": "^1.2.0",
"mocha": "^9.1.3",
"nyc": "^15.1.0",
"typescript": "^4.5.4"
2020-05-15 12:18:01 -04:00
},
"dependencies": {}
2018-03-07 11:42:39 -05:00
}