mirror of
https://github.com/arthur-pbty/portfolio2023.git
synced 2026-06-04 15:56:24 +02:00
150 lines
3.4 KiB
JSON
150 lines
3.4 KiB
JSON
{
|
|
"name": "@japa/preset-adonis",
|
|
"version": "1.2.0",
|
|
"description": "Preset for AdonisJS",
|
|
"main": "build/index.js",
|
|
"files": [
|
|
"build/index.d.ts",
|
|
"build/index.js",
|
|
"build/providers",
|
|
"build/adonis-typings"
|
|
],
|
|
"exports": {
|
|
".": {
|
|
"types": "./build/index.d.ts",
|
|
"require": "./build/index.js"
|
|
},
|
|
"./TestsProvider": {
|
|
"types": [
|
|
"./build/adonis-typings/index.d.ts"
|
|
],
|
|
"require": "./build/providers/TestsProvider/index.js"
|
|
},
|
|
"./*": {
|
|
"types": [
|
|
"./build/adonis-typings/index.d.ts"
|
|
],
|
|
"require": "./*"
|
|
}
|
|
},
|
|
"scripts": {
|
|
"mrm": "mrm --preset=@adonisjs/mrm-preset",
|
|
"pretest": "npm run lint",
|
|
"test": "",
|
|
"clean": "del-cli build",
|
|
"compile": "npm run lint && npm run clean && tsc",
|
|
"build": "npm run compile",
|
|
"prepublishOnly": "npm run build",
|
|
"lint": "eslint . --ext=.ts",
|
|
"format": "prettier --write .",
|
|
"commit": "git-cz",
|
|
"release": "np --message=\"chore(release): %s\"",
|
|
"version": "npm run build",
|
|
"sync-labels": "github-label-sync --labels ./node_modules/@adonisjs/mrm-preset/gh-labels.json null"
|
|
},
|
|
"keywords": [
|
|
"adonisjs",
|
|
"adonis-preset",
|
|
"preset"
|
|
],
|
|
"author": "virk,japa",
|
|
"license": "MIT",
|
|
"devDependencies": {
|
|
"@adonisjs/core": "^5.8.6",
|
|
"@adonisjs/mrm-preset": "^5.0.3",
|
|
"@adonisjs/require-ts": "^2.0.12",
|
|
"@japa/runner": "^2.1.3",
|
|
"@types/node": "^18.7.16",
|
|
"commitizen": "^4.2.5",
|
|
"cz-conventional-changelog": "^3.3.0",
|
|
"del-cli": "^5.0.0",
|
|
"eslint": "^8.23.0",
|
|
"eslint-config-prettier": "^8.5.0",
|
|
"eslint-plugin-adonis": "^2.1.0",
|
|
"eslint-plugin-prettier": "^4.2.1",
|
|
"github-label-sync": "^2.2.0",
|
|
"husky": "^8.0.1",
|
|
"mrm": "^4.1.0",
|
|
"np": "^7.6.2",
|
|
"prettier": "^2.7.1",
|
|
"typescript": "^4.8.2"
|
|
},
|
|
"mrmConfig": {
|
|
"core": false,
|
|
"license": "MIT",
|
|
"services": [
|
|
"github-actions"
|
|
],
|
|
"minNodeVersion": "16.13.1",
|
|
"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
|
|
},
|
|
"config": {
|
|
"commitizen": {
|
|
"path": "cz-conventional-changelog"
|
|
}
|
|
},
|
|
"np": {
|
|
"contents": ".",
|
|
"anyBranch": false
|
|
},
|
|
"publishConfig": {
|
|
"access": "public",
|
|
"tag": "latest"
|
|
},
|
|
"dependencies": {
|
|
"@japa/api-client": "^1.4.2",
|
|
"@japa/assert": "^1.3.6",
|
|
"@japa/run-failed-tests": "^1.1.0",
|
|
"@japa/spec-reporter": "^1.3.0"
|
|
},
|
|
"peerDependencies": {
|
|
"@adonisjs/core": "^5.0.0",
|
|
"@japa/runner": "^2.0.0"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git+https://github.com/japa/preset-adonis.git"
|
|
},
|
|
"bugs": {
|
|
"url": "https://github.com/japa/preset-adonis/issues"
|
|
},
|
|
"homepage": "https://github.com/japa/preset-adonis#readme",
|
|
"adonisjs": {
|
|
"types": "@japa/preset-adonis/build/adonis-typings/index"
|
|
}
|
|
}
|