mirror of
https://github.com/overleaf/overleaf.git
synced 2024-11-07 20:31:06 -05:00
4b308553be
[misc] move the linting setup to the root of the monorepo GitOrigin-RevId: 1633e2a58598add0b727738cd3bfba0ab7bae781
57 lines
2.2 KiB
JSON
57 lines
2.2 KiB
JSON
{
|
|
"name": "@overleaf/o-error",
|
|
"version": "3.3.1",
|
|
"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.",
|
|
"keywords": [
|
|
"browser",
|
|
"node",
|
|
"error",
|
|
"long stack trace",
|
|
"stack trace",
|
|
"stack",
|
|
"cause",
|
|
"verror"
|
|
],
|
|
"main": "dist/index.js",
|
|
"files": [
|
|
"dist/index.js",
|
|
"dist/index.d.ts"
|
|
],
|
|
"types": "dist/index.d.ts",
|
|
"scripts": {
|
|
"clean": "rm -rf dist",
|
|
"build": "npm run --silent clean && npm run --silent typecheck && npm run --silent test && npm run --silent build:compile && npm run --silent declaration:build && npm run --silent update-readme",
|
|
"build:compile": "babel index.js --out-dir dist",
|
|
"declaration:build": "rm -f dist/index.d.ts && tsc --allowJs --declaration --emitDeclarationOnly --outDir dist --moduleResolution node --target ES6 index.js",
|
|
"declaration:check": "git diff --exit-code -- dist/index.d.ts",
|
|
"lint": "../../node_modules/.bin/eslint --max-warnings 0 --format unix .",
|
|
"lint:fix": "../../node_modules/.bin/eslint --fix .",
|
|
"prepublishOnly": "npm run --silent declaration:build && npm run --silent declaration:check",
|
|
"test": "mocha",
|
|
"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": "../../node_modules/.bin/prettier --list-different $PWD/'**/*.js'",
|
|
"format:fix": "../../node_modules/.bin/prettier --write $PWD/'**/*.js'",
|
|
"test:ci": "npm run typecheck && npm run test"
|
|
},
|
|
"author": "Overleaf (https://www.overleaf.com)",
|
|
"license": "MIT",
|
|
"repository": "github:overleaf/o-error",
|
|
"devDependencies": {
|
|
"@babel/cli": "^7.12.10",
|
|
"@babel/core": "^7.12.10",
|
|
"@babel/preset-env": "^7.12.11",
|
|
"@types/chai": "^4.2.12",
|
|
"@types/node": "^13.13.2",
|
|
"chai": "^3.3.0",
|
|
"jsdoc-to-markdown": "^5.0.3",
|
|
"markdown-toc": "^1.2.0",
|
|
"mocha": "^7.1.1",
|
|
"nyc": "^15.0.1",
|
|
"typescript": "^3.8.3"
|
|
},
|
|
"dependencies": {
|
|
"core-js": "^3.8.3"
|
|
}
|
|
}
|