mirror of
https://github.com/arthur-pbty/portfolio2023.git
synced 2026-06-04 07:46:21 +02:00
108 lines
2.5 KiB
JSON
108 lines
2.5 KiB
JSON
{
|
|
"name": "edge-error",
|
|
"version": "3.0.0",
|
|
"description": "Create errors with custom stack trace pointing to the .edge template file",
|
|
"main": "build/index.js",
|
|
"files": [
|
|
"build/index.d.ts",
|
|
"build/index.js",
|
|
"build/types.d.ts",
|
|
"build/types.js"
|
|
],
|
|
"exports": {
|
|
".": "./build/index.js",
|
|
"./types": "./build/types.js"
|
|
},
|
|
"scripts": {
|
|
"pretest": "npm run lint",
|
|
"test": "npm run vscode:test",
|
|
"vscode:test": "node --require=@adonisjs/require-ts/build/register bin/test.ts",
|
|
"clean": "del-cli build",
|
|
"compile": "npm run lint && npm run clean && tsc",
|
|
"build": "npm run compile",
|
|
"lint": "eslint . --ext=.ts",
|
|
"release": "np",
|
|
"version": "npm run build",
|
|
"sync-labels": "github-label-sync --labels .github/labels.js edge-js/error",
|
|
"format": "prettier --write .",
|
|
"prepublishOnly": "npm run build"
|
|
},
|
|
"keywords": [
|
|
"edge-error",
|
|
"edge.js"
|
|
],
|
|
"author": "virk",
|
|
"license": "MIT",
|
|
"devDependencies": {
|
|
"@adonisjs/require-ts": "^2.0.12",
|
|
"@commitlint/cli": "^17.1.2",
|
|
"@commitlint/config-conventional": "^17.1.0",
|
|
"@japa/assert": "^1.3.6",
|
|
"@japa/run-failed-tests": "^1.1.0",
|
|
"@japa/runner": "^2.2.1",
|
|
"@japa/spec-reporter": "^1.3.1",
|
|
"@types/node": "^18.7.18",
|
|
"del-cli": "^5.0.0",
|
|
"eslint": "^8.23.1",
|
|
"eslint-config-prettier": "^8.5.0",
|
|
"eslint-plugin-adonis": "^2.1.1",
|
|
"eslint-plugin-prettier": "^4.2.1",
|
|
"github-label-sync": "^2.2.0",
|
|
"husky": "^8.0.1",
|
|
"np": "^7.6.2",
|
|
"prettier": "^2.7.1",
|
|
"typescript": "^4.8.3"
|
|
},
|
|
"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",
|
|
"np": {
|
|
"contents": ".",
|
|
"message": "chore(release): %s",
|
|
"anyBranch": false
|
|
},
|
|
"commitlint": {
|
|
"extends": [
|
|
"@commitlint/config-conventional"
|
|
]
|
|
},
|
|
"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
|
|
}
|
|
}
|