{ "name": "edge-error", "version": "2.0.8", "description": "Create errors custom stack trace pointing to the Edge source file", "main": "build/src/index.js", "files": [ "build/src" ], "scripts": { "pretest": "npm run lint", "test": "node .bin/test.js", "mrm": "mrm --preset=@adonisjs/mrm-preset", "commit": "git-cz", "clean": "del build", "compile": "npm run lint && npm run clean && tsc", "build": "npm run compile", "lint": "eslint . --ext=.ts", "release": "np --message=\"chore(release): %s\"", "version": "npm run build", "sync-labels": "github-label-sync --labels ./node_modules/@adonisjs/mrm-preset/gh-labels.json edge-js/error", "format": "prettier --write .", "prepublishOnly": "npm run build" }, "keywords": [ "edge", "edge.js" ], "author": "virk", "license": "MIT", "devDependencies": { "@adonisjs/mrm-preset": "^5.0.3", "@adonisjs/require-ts": "^2.0.11", "@types/node": "^17.0.23", "commitizen": "^4.2.4", "cz-conventional-changelog": "^3.3.0", "del-cli": "^4.0.1", "eslint": "^8.12.0", "eslint-config-prettier": "^8.5.0", "eslint-plugin-adonis": "^2.1.0", "eslint-plugin-prettier": "^4.0.0", "github-label-sync": "^2.2.0", "husky": "^7.0.4", "japa": "^4.0.0", "japa-cli": "^1.0.1", "mrm": "^4.0.0", "np": "^7.6.1", "prettier": "^2.6.2", "typescript": "^4.6.3" }, "config": { "commitizen": { "path": "cz-conventional-changelog" } }, "nyc": { "exclude": [ "test" ], "extension": [ ".ts" ] }, "directories": { "test": "test" }, "repository": { "type": "git", "url": "git+https://github.com/edge-js/edge-error.git" }, "bugs": { "url": "https://github.com/edge-js/edge-error/issues" }, "homepage": "https://github.com/edge-js/edge-error#readme", "gitHooks": { "commit-msg": "node ./node_modules/@adonisjs/mrm-preset/validateCommit/conventional/validate.js" }, "husky": { "hooks": { "commit-msg": "node ./node_modules/@adonisjs/mrm-preset/validateCommit/conventional/validate.js" } }, "np": { "contents": ".", "anyBranch": false }, "mrmConfig": { "core": false, "license": "MIT", "services": [ "github-actions" ], "minNodeVersion": "14.15.4", "probotApps": [ "stale", "lock" ], "runGhActionsOnWindows": false }, "eslintConfig": { "extends": [ "plugin:adonis/typescriptPackage", "prettier" ], "plugins": [ "prettier" ], "rules": { "prettier/prettier": [ "error", { "endOfLine": "auto" } ] } }, "eslintIgnore": [ "build" ], "prettier": { "trailingComma": "es5", "semi": false, "singleQuote": true, "useTabs": false, "quoteProps": "consistent", "bracketSpacing": true, "arrowParens": "always", "printWidth": 100 } }