mirror of
https://github.com/arthur-pbty/portfolio2023.git
synced 2026-06-03 23:36:21 +02:00
142 lines
3.2 KiB
JSON
142 lines
3.2 KiB
JSON
{
|
|
"name": "edge-parser",
|
|
"version": "8.2.2",
|
|
"description": "Parser for edge template engine",
|
|
"main": "build/index.js",
|
|
"files": [
|
|
"build/src",
|
|
"build/index.d.ts",
|
|
"build/index.js"
|
|
],
|
|
"scripts": {
|
|
"pretest": "npm run lint",
|
|
"test": "node .bin/test.js",
|
|
"build": "npm run compile",
|
|
"mrm": "mrm --preset=@adonisjs/mrm-preset",
|
|
"commit": "git-cz",
|
|
"test:win": "node ./node_modules/japa-cli/index.js",
|
|
"clean": "del build",
|
|
"compile": "npm run lint && npm run clean && tsc",
|
|
"release": "np --message=\"chore(release): %s\"",
|
|
"version": "npm run build",
|
|
"lint": "eslint . --ext=.ts",
|
|
"prepublishOnly": "npm run build",
|
|
"sync-labels": "github-label-sync --labels ./node_modules/@adonisjs/mrm-preset/gh-labels.json edge-js/parser",
|
|
"format": "prettier --write ."
|
|
},
|
|
"keywords": [
|
|
"edge",
|
|
"template",
|
|
"template-engine"
|
|
],
|
|
"author": "virk",
|
|
"license": "MIT",
|
|
"dependencies": {
|
|
"acorn": "^8.8.2",
|
|
"astring": "^1.8.4",
|
|
"edge-error": "^3.0.0",
|
|
"edge-lexer": "^5.0.2",
|
|
"js-stringify": "^1.0.2"
|
|
},
|
|
"devDependencies": {
|
|
"@adonisjs/mrm-preset": "^5.0.3",
|
|
"@adonisjs/require-ts": "^2.0.13",
|
|
"@types/acorn": "^6.0.0",
|
|
"@types/astring": "^1.7.0",
|
|
"@types/node": "^18.15.3",
|
|
"commitizen": "^4.3.0",
|
|
"cz-conventional-changelog": "^3.3.0",
|
|
"dedent-js": "^1.0.1",
|
|
"del-cli": "^5.0.0",
|
|
"doctoc": "^2.2.1",
|
|
"eslint": "^8.36.0",
|
|
"eslint-config-prettier": "^8.7.0",
|
|
"eslint-plugin-adonis": "^2.1.0",
|
|
"eslint-plugin-prettier": "^4.2.1",
|
|
"github-label-sync": "^2.3.1",
|
|
"husky": "^8.0.3",
|
|
"japa": "^4.0.0",
|
|
"mrm": "^4.1.14",
|
|
"np": "^7.6.4",
|
|
"prettier": "^2.8.5",
|
|
"typescript": "^5.0.2",
|
|
"youch": "^3.2.3"
|
|
},
|
|
"config": {
|
|
"commitizen": {
|
|
"path": "cz-conventional-changelog"
|
|
}
|
|
},
|
|
"nyc": {
|
|
"exclude": [
|
|
"test"
|
|
],
|
|
"extension": [
|
|
".ts"
|
|
]
|
|
},
|
|
"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
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git+https://github.com/edge-js/parser.git"
|
|
},
|
|
"bugs": {
|
|
"url": "https://github.com/edge-js/parser/issues"
|
|
},
|
|
"homepage": "https://github.com/edge-js/parser#readme",
|
|
"mrmConfig": {
|
|
"core": false,
|
|
"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
|
|
}
|
|
}
|