UNPKG

etcd3-mock

Version:
67 lines (66 loc) 1.73 kB
{ "name": "etcd3-mock", "version": "0.0.1", "description": "toonew", "main": "./dist/index.js", "keywords": [ "etcd3", "mock", "etcd3-mock" ], "author": "toonew", "license": "MIT", "scripts": { "prebuild": "rimraf -rf dist", "build": "tsc -p tsconfig.json", "lint": "eslint 'src/**/*.ts' --fix", "format": "prettier --write \"src/**/*.ts\" \"test/**/*.ts\"", "prepublish:npm": "npm run build", "publish:npm": "npm publish --access public", "prepublish:next": "npm run build", "publish:next": "npm publish --access public --tag next", "test": "jest --config ./test/jest-e2e.json --runInBand", "prerelease": "npm run build", "release": "release-it" }, "dependencies": {}, "peerDependencies": { "etcd3": "1.x" }, "devDependencies": { "@commitlint/cli": "9.1.2", "@commitlint/config-angular": "9.1.2", "@types/jest": "26.0.10", "@types/node": "14.6.2", "@typescript-eslint/eslint-plugin": "3.10.1", "@typescript-eslint/parser": "3.10.1", "eslint": "7.7.0", "eslint-config-prettier": "6.11.0", "etcd3": "1.0.1", "husky": "4.2.5", "jest": "26.4.2", "lint-staged": "10.2.13", "prettier": "2.1.1", "release-it": "13.7.0", "rimraf": "3.0.2", "ts-jest": "26.3.0", "ts-node": "9.0.0", "typescript": "4.0.2" }, "lint-staged": { "*.ts": [ "prettier --write" ] }, "husky": { "hooks": { "commit-msg": "commitlint -c .commitlintrc.json -E HUSKY_GIT_PARAMS", "pre-commit": "lint-staged && npm run test", "pre-push": "npm run build" } }, "repository": { "type": "git", "url": "https://github.com/LastKing/etcd3-mock" } }