UNPKG

pm10

Version:

Helper to show the name of the 10th Prime Minister of Malaysia

49 lines (48 loc) 1.05 kB
{ "name": "pm10", "version": "2.0.2", "author": "Deojeff Lai", "main": "lib/src/index.js", "scripts": { "build": "tsc", "dev": "yarn build && node ./lib/test/main.js" }, "repository": { "type": "git", "url": "https://github.com/d30jeff/pm10" }, "keywords": [ "pm10", "Malaysia" ], "types": "lib/src/index.d.ts", "license": "MIT", "private": false, "devDependencies": { "@typescript-eslint/eslint-plugin": "^5.40.1", "@typescript-eslint/parser": "^5.40.1", "eslint": "^8.28.0", "eslint-config-airbnb-base": "^15.0.0", "eslint-config-prettier": "^8.3.0", "eslint-plugin-import": "^2.25.4", "eslint-plugin-mocha": "^9.0.0", "eslint-plugin-prettier": "^3.4.1", "prettier": "^2.8.0", "typescript": "^4.9.3" }, "optionalDependencies": { "husky": "^4.2.5", "jest": "^27.2.4", "lint-staged": "^10.2.11" }, "husky": { "hooks": { "pre-commit": "lint-staged" } }, "lint-staged": { "*.js": [ "eslint --fix" ] } }