UNPKG

velona

Version:

TypeScript DI helper for functional programming

103 lines (102 loc) 2.83 kB
{ "name": "velona", "version": "0.8.0", "description": "TypeScript DI helper for functional programming", "author": "Solufa <solufa2020@gmail.com>", "license": "MIT", "main": "./dist/cjs/index.js", "exports": { ".": { "require": "./dist/cjs/index.js", "import": "./dist/esm/index.js", "types": "./dist/esm/index.d.ts" }, "./package.json": "./package.json" }, "scripts": { "build": "rimraf dist && tsc -p tsconfig.esm.json && tsc -p tsconfig.cjs.json", "lint": "eslint --ext .js,.ts --ignore-path .gitignore . && prettier --ignore-path .gitignore --check \"./**/*.ts\"", "lint:fix": "eslint --ext .js,.ts --ignore-path .gitignore . --fix && prettier --ignore-path .gitignore --write \"./**/*.ts\"", "test": "jest", "typecheck": "tsc --noEmit" }, "homepage": "https://github.com/frouriojs/velona#readme", "repository": { "type": "git", "url": "git+https://github.com/frouriojs/velona.git" }, "bugs": { "url": "https://github.com/frouriojs/velona/issues" }, "files": [ "dist" ], "keywords": [ "typescript", "DI" ], "eslintConfig": { "env": { "es6": true, "node": true, "browser": true }, "extends": [ "standard", "plugin:@typescript-eslint/recommended", "plugin:jest/recommended", "prettier" ], "parserOptions": { "ecmaVersion": 2018, "sourceType": "module" }, "root": true, "rules": { "@typescript-eslint/explicit-function-return-type": "off", "@typescript-eslint/ban-ts-comment": "off", "@typescript-eslint/explicit-module-boundary-types": "off", "@typescript-eslint/no-var-requires": "off", "@typescript-eslint/ban-types": "off", "@typescript-eslint/camelcase": "off", "@typescript-eslint/no-explicit-any": "off" } }, "prettier": { "printWidth": 100, "arrowParens": "avoid", "singleQuote": true, "overrides": [ { "files": [ "*.md", "*.yml" ], "options": { "singleQuote": false } } ] }, "devDependencies": { "@types/jest": "^29.5.3", "@types/node": "^20.4.8", "@typescript-eslint/eslint-plugin": "^6.2.1", "@typescript-eslint/parser": "^6.2.1", "eslint": "^8.46.0", "eslint-config-prettier": "^8.10.0", "eslint-config-standard": "^17.1.0", "eslint-plugin-import": "^2.28.0", "eslint-plugin-jest": "^27.2.3", "eslint-plugin-node": "^11.1.0", "eslint-plugin-prettier": "^4.2.1", "eslint-plugin-promise": "^6.1.1", "eslint-plugin-standard": "^5.0.0", "jest": "^29.6.2", "prettier": "^2.8.8", "prettier-plugin-organize-imports": "^3.2.3", "rimraf": "^5.0.1", "ts-jest": "^29.1.1", "typescript": "^5.1.6" } }