mirror of
https://github.com/arthur-pbty/portfolio2023.git
synced 2026-06-03 23:36:21 +02:00
116 lines
2.8 KiB
JSON
116 lines
2.8 KiB
JSON
{
|
|
"name": "@japa/base-reporter",
|
|
"version": "1.1.2",
|
|
"description": "Base reporter to create customized testing reporters for Japa",
|
|
"type": "commonjs",
|
|
"main": "./build/index.js",
|
|
"files": [
|
|
"build/src",
|
|
"build/index.js",
|
|
"build/index.d.ts"
|
|
],
|
|
"types": "./build/index.d.ts",
|
|
"exports": {
|
|
".": "./build/index.js"
|
|
},
|
|
"scripts": {
|
|
"pretest": "npm run lint",
|
|
"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",
|
|
"release": "np --message=\"chore(release): %s\"",
|
|
"version": "npm run build",
|
|
"prepublishOnly": "npm run build",
|
|
"lint": "eslint . --ext=.ts",
|
|
"format": "prettier --write .",
|
|
"sync-labels": "github-label-sync --labels .github/labels.json @japa/base-reporter"
|
|
},
|
|
"publishConfig": {
|
|
"access": "public",
|
|
"tag": "latest"
|
|
},
|
|
"keywords": [],
|
|
"author": "japa,virk",
|
|
"license": "MIT",
|
|
"devDependencies": {
|
|
"@adonisjs/require-ts": "^2.0.13",
|
|
"@commitlint/cli": "^17.4.4",
|
|
"@commitlint/config-conventional": "^17.4.4",
|
|
"@japa/assert": "^1.4.1",
|
|
"@japa/core": "^7.3.2",
|
|
"@japa/run-failed-tests": "^1.1.1",
|
|
"@japa/runner": "^2.5.1",
|
|
"@japa/spec-reporter": "^1.3.3",
|
|
"@types/ms": "^0.7.31",
|
|
"@types/node": "^18.14.5",
|
|
"del-cli": "^5.0.0",
|
|
"eslint": "^8.35.0",
|
|
"eslint-config-prettier": "^8.6.0",
|
|
"eslint-plugin-adonis": "^3.0.3",
|
|
"eslint-plugin-prettier": "^4.0.0",
|
|
"github-label-sync": "^2.2.0",
|
|
"husky": "^8.0.3",
|
|
"np": "^7.6.3",
|
|
"prettier": "^2.8.4",
|
|
"typescript": "^4.9.5"
|
|
},
|
|
"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
|
|
},
|
|
"commitlint": {
|
|
"extends": [
|
|
"@commitlint/config-conventional"
|
|
]
|
|
},
|
|
"np": {
|
|
"message": "chore(release): %s",
|
|
"tag": "latest",
|
|
"branch": "main",
|
|
"anyBranch": false
|
|
},
|
|
"dependencies": {
|
|
"@japa/errors-printer": "^2.1.0",
|
|
"@poppinss/cliui": "^3.0.5",
|
|
"ms": "^2.1.3"
|
|
},
|
|
"directories": {
|
|
"test": "tests"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git+https://github.com/japa/base-reporter.git"
|
|
},
|
|
"bugs": {
|
|
"url": "https://github.com/japa/base-reporter/issues"
|
|
},
|
|
"homepage": "https://github.com/japa/base-reporter#readme"
|
|
}
|