UNPKG

@pipepack/enhanced-resolver

Version:

yet, reimplement enhanced-resolve with the idea 'simple is best'.

91 lines (90 loc) 2.52 kB
{ "name": "@pipepack/enhanced-resolver", "version": "0.3.0", "description": "yet, reimplement enhanced-resolve with the idea 'simple is best'.", "main": "lib/index.js", "types": "types/index.d.ts", "engines": { "node": ">=10.0.0" }, "scripts": { "prepublishOnly": "npm-run-all -s clean compile:code compile:types", "test": "jest --coverage", "test:cov": "jest --watch", "clean": "rm -rf lib types", "compile:code": "babel src --source-maps --out-dir lib --extensions '.js,.ts'", "compile:types": "tsc --project tsconfig.production.json", "compile:watch": "babel src --source-maps --out-dir lib --extensions '.js,.ts' --watch" }, "files": [ "lib", "types" ], "repository": { "type": "git", "url": "git+ssh://git@github.com/pipepack/enhanced-resolver.git" }, "keywords": [ "pipepack", "enhanced-resolver" ], "author": "huang.jian <hjj491229492@hotmail.com>", "contributors": [ { "name": "huang.jian", "email": "hjj491229492@hotmail.com" }, { "name": "yang.yuncai", "email": "383235388@qq.com" } ], "license": "ISC", "bugs": { "url": "https://github.com/pipepack/enhanced-resolver/issues" }, "homepage": "https://github.com/pipepack/enhanced-resolver#README", "devDependencies": { "@babel/cli": "^7.2.3", "@babel/core": "^7.3.3", "@babel/preset-env": "^7.3.1", "@babel/preset-typescript": "^7.3.3", "@commitlint/cli": "^8.0.0", "@commitlint/config-conventional": "^8.0.0", "@types/jest": "^25.1.2", "@types/node": "^14.0.0", "@typescript-eslint/eslint-plugin": "^3.10.1", "@typescript-eslint/parser": "^3.10.1", "babel-core": "7.0.0-bridge.0", "babel-jest": "^24.1.0", "cz-conventional-changelog": "3.1.1", "eslint": "^7.7.0", "eslint-config-airbnb-base": "^14.0.0", "eslint-config-airbnb-typescript": "^9.0.0", "eslint-config-prettier": "^6.0.0", "eslint-plugin-import": "^2.18.2", "husky": "^4.3.0", "jest": "^24.1.0", "lint-staged": "^10.5.1", "npm-run-all": "^4.1.5", "preact": "^10.5.7", "prettier": "^2.0.0", "typescript": "^4.0.2" }, "config": { "commitizen": { "path": "cz-conventional-changelog" } }, "husky": { "hooks": { "pre-commit": "lint-staged", "pre-push": "npm-run-all -s test", "commit-msg": "commitlint -E HUSKY_GIT_PARAMS" } }, "dependencies": { "rxjs": "^6.6.3", "utility-types": "^3.10.0" } }