@athenna/view
Version:
The Athenna template engine. Built on top of Edge.js.
182 lines (181 loc) • 4.48 kB
JSON
{
"name": "@athenna/view",
"version": "5.4.0",
"description": "The Athenna template engine. Built on top of Edge.js.",
"license": "MIT",
"author": "João Lenon <lenon@athenna.io>",
"bugs": "https://github.com/AthennaIO/View/issues",
"repository": "https://github.com/AthennaIO/View.git",
"homepage": "https://github.com/AthennaIO/View#readme",
"keywords": [
"esm",
"view",
"edge",
"html",
"text",
"edgejs",
"edge.js",
"markdown",
"athenna",
"template",
"typescript"
],
"engines": {
"node": ">=20.0.0"
},
"scripts": {
"build": "node node_modules/@athenna/tsconfig/src/build.js",
"lint:fix": "eslint \"{bin,src,tests}/**/*.ts\" --fix",
"test": "npm run --silent lint:fix && node --enable-source-maps --import=@athenna/tsconfig bin/test.ts",
"test:debug": "cross-env NODE_DEBUG=athenna:* node --inspect --enable-source-maps --import=@athenna/tsconfig bin/test.ts",
"test:coverage": "c8 npm run --silent test"
},
"files": [
"src/*.js",
"src/*.d.ts",
"src/**/*.js",
"src/**/*.d.ts",
"templates",
"configurer"
],
"type": "module",
"main": "./src/index.js",
"types": "./src/index.d.ts",
"exports": {
".": "./src/index.js",
"./types": "./src/types/index.js",
"./package": "./package",
"./package.json": "./package.json",
"./providers/ViewProvider": "./src/providers/ViewProvider.js",
"./commands/MakeViewCommand": "./src/commands/MakeViewCommand.js"
},
"imports": {
"#bin/*": "./bin/*.js",
"#bin": "./bin/index.js",
"#src/*": "./src/*.js",
"#src": "./src/index.js",
"#src/debug": "./src/debug/index.js",
"#src/types": "./src/types/index.js",
"#tests/*": "./tests/*.js",
"#tests": "./tests/index.js"
},
"dependencies": {
"edge.js": "^6.3.0"
},
"devDependencies": {
"@athenna/common": "^5.14.0",
"@athenna/config": "^5.4.0",
"@athenna/ioc": "^5.2.0",
"@athenna/test": "^5.5.0",
"@athenna/tsconfig": "^5.0.0",
"@typescript-eslint/eslint-plugin": "^8.38.0",
"@typescript-eslint/parser": "^8.38.0",
"commitizen": "^4.3.1",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^8.57.1",
"eslint-config-prettier": "^8.10.2",
"eslint-config-standard": "^17.1.0",
"eslint-plugin-import": "^2.32.0",
"eslint-plugin-n": "^15.7.0",
"eslint-plugin-prettier": "^4.2.5",
"eslint-plugin-promise": "^6.6.0",
"husky": "^3.1.0",
"lint-staged": "^12.5.0",
"prettier": "^2.8.8"
},
"c8": {
"all": true,
"include": [
"src/**/*.ts"
],
"exclude": [
"configurer",
"src/commands"
],
"reporter": [
"text-summary",
"html"
],
"report-dir": "./tests/coverage",
"check-coverage": true
},
"husky": {
"hooks": {
"prepare-commit-msg": "lint-staged && exec < /dev/tty && git cz --hook || true"
}
},
"lint-staged": {
"*.ts": [
"eslint --fix",
"git add"
],
"*.json": [
"prettier --write",
"git add"
]
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"prettier": {
"singleQuote": true,
"trailingComma": "none",
"arrowParens": "avoid",
"endOfLine": "lf",
"semi": false,
"printWidth": 80,
"overrides": [
{
"files": "tests/**/*",
"options": {
"printWidth": 120
}
}
]
},
"eslintIgnore": [
"build/**/*"
],
"eslintConfig": {
"env": {
"es2021": true,
"node": true
},
"globals": {
"ioc": true,
"Env": true,
"Path": true,
"Config": true
},
"plugins": [
"prettier",
"@typescript-eslint"
],
"extends": [
"standard",
"eslint:recommended",
"plugin:prettier/recommended",
"plugin:@typescript-eslint/recommended",
"plugin:@typescript-eslint/eslint-recommended"
],
"parser": "@typescript-eslint/parser",
"rules": {
"camelcase": "off",
"dot-notation": "off",
"prettier/prettier": "error",
"no-useless-constructor": "off",
"@typescript-eslint/no-explicit-any": "off",
"@typescript-eslint/no-empty-function": "off",
"@typescript-eslint/no-unused-vars": [
"error",
{
"argsIgnorePattern": "^_",
"varsIgnorePattern": "^_",
"caughtErrorsIgnorePattern": "^_"
}
]
}
}
}