overleaf/libraries/o-error/package.json

36 lines
1.2 KiB
JSON
Raw Normal View History

2018-03-07 16:42:39 +00:00
{
2019-07-08 10:35:29 +00:00
"name": "@overleaf/o-error",
2019-07-26 16:14:56 +00:00
"version": "2.1.0",
2019-07-08 10:35:29 +00:00
"description": "Make custom error types that pass `instanceof` checks, have stack traces, support custom messages and properties, and can wrap causes (like VError).",
2018-03-07 16:42:39 +00:00
"main": "index.js",
"scripts": {
2020-04-17 07:43:08 +00:00
"lint": "eslint .",
2020-04-29 19:58:10 +00:00
"update-readme": "doc/update-readme.js",
2020-04-28 19:38:34 +00:00
"test": "mocha",
"typecheck": "tsc --allowJs --checkJs --noEmit --moduleResolution node --target ES6 *.js test/**/*.js"
2018-03-07 16:42:39 +00:00
},
2018-04-21 22:24:23 +00:00
"author": "Overleaf (https://www.overleaf.com)",
"license": "MIT",
2019-07-08 12:22:49 +00:00
"repository": "github:overleaf/o-error",
2018-03-07 16:42:39 +00:00
"devDependencies": {
2020-04-28 19:38:34 +00:00
"@types/node": "^13.13.2",
2018-03-07 16:42:39 +00:00
"chai": "^3.3.0",
2020-04-17 07:43:08 +00:00
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.10.1",
2020-04-17 09:59:27 +00:00
"eslint-config-standard": "^14.1.1",
2020-04-17 07:43:08 +00:00
"eslint-plugin-chai-expect": "^2.1.0",
"eslint-plugin-chai-friendly": "^0.5.0",
2020-04-17 09:59:27 +00:00
"eslint-plugin-import": "^2.20.2",
2020-04-17 07:43:08 +00:00
"eslint-plugin-mocha": "^6.3.0",
2020-04-17 09:59:27 +00:00
"eslint-plugin-node": "^11.1.0",
2020-04-17 07:43:08 +00:00
"eslint-plugin-prettier": "^3.1.3",
2020-04-17 09:59:27 +00:00
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1",
2020-04-29 19:58:10 +00:00
"jsdoc-to-markdown": "^5.0.3",
"markdown-toc": "^1.2.0",
2020-04-17 07:43:08 +00:00
"mocha": "^7.1.1",
2020-04-28 19:38:34 +00:00
"prettier": "^2.0.2",
"typescript": "^3.8.3"
2018-03-07 16:42:39 +00:00
}
}