mirror of
https://github.com/arthur-pbty/portfolio2023.git
synced 2026-06-04 07:46:21 +02:00
145 lines
3.3 KiB
JSON
145 lines
3.3 KiB
JSON
{
|
|
"name": "@adonisjs/require-ts",
|
|
"version": "2.0.13",
|
|
"description": "In memory typescript compiler",
|
|
"scripts": {
|
|
"mrm": "mrm --preset=@adonisjs/mrm-preset",
|
|
"pretest": "npm run lint",
|
|
"test": "cross-env FORCE_COLOR=true node -r ts-node/register/transpile-only bin/test.ts",
|
|
"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 adonisjs/require-ts"
|
|
},
|
|
"keywords": [
|
|
"typescript",
|
|
"ts",
|
|
"tsc",
|
|
"ts-node"
|
|
],
|
|
"author": "virk,adonisjs",
|
|
"license": "MIT",
|
|
"devDependencies": {
|
|
"@adonisjs/mrm-preset": "^5.0.3",
|
|
"@japa/assert": "^1.3.6",
|
|
"@japa/run-failed-tests": "^1.1.0",
|
|
"@japa/runner": "^2.2.1",
|
|
"@japa/spec-reporter": "^1.3.1",
|
|
"@poppinss/dev-utils": "^2.0.3",
|
|
"@types/node": "^18.7.18",
|
|
"@types/source-map-support": "^0.5.6",
|
|
"benchmark": "^2.1.4",
|
|
"commitizen": "^4.2.5",
|
|
"cross-env": "^7.0.3",
|
|
"cz-conventional-changelog": "^3.3.0",
|
|
"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",
|
|
"mrm": "^4.1.6",
|
|
"np": "^7.6.2",
|
|
"prettier": "^2.7.1",
|
|
"test-console": "^2.0.0",
|
|
"ts-node": "^10.9.1",
|
|
"typescript": "^4.8.3"
|
|
},
|
|
"nyc": {
|
|
"exclude": [
|
|
"test"
|
|
],
|
|
"extension": [
|
|
".ts"
|
|
]
|
|
},
|
|
"main": "build/index.js",
|
|
"files": [
|
|
"build/src",
|
|
"build/index.d.ts",
|
|
"build/index.js",
|
|
"build/register.js",
|
|
"build/register.d.ts"
|
|
],
|
|
"config": {
|
|
"commitizen": {
|
|
"path": "cz-conventional-changelog"
|
|
}
|
|
},
|
|
"np": {
|
|
"contents": ".",
|
|
"anyBranch": false
|
|
},
|
|
"dependencies": {
|
|
"@poppinss/utils": "^5.0.0",
|
|
"debug": "^4.3.4",
|
|
"find-cache-dir": "^3.3.2",
|
|
"fs-extra": "^10.1.0",
|
|
"normalize-path": "^3.0.0",
|
|
"pirates": "^4.0.5",
|
|
"rev-hash": "^3.0.0",
|
|
"source-map-support": "^0.5.21"
|
|
},
|
|
"directories": {
|
|
"test": "test"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git+https://github.com/adonisjs/require-ts.git"
|
|
},
|
|
"bugs": {
|
|
"url": "https://github.com/adonisjs/require-ts/issues"
|
|
},
|
|
"homepage": "https://github.com/adonisjs/require-ts#readme",
|
|
"mrmConfig": {
|
|
"core": true,
|
|
"license": "MIT",
|
|
"services": [
|
|
"github-actions"
|
|
],
|
|
"minNodeVersion": "14.15.4",
|
|
"probotApps": [
|
|
"stale",
|
|
"lock"
|
|
],
|
|
"runGhActionsOnWindows": true
|
|
},
|
|
"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
|
|
}
|
|
}
|