UNPKG

vue-timeago

Version:
89 lines (88 loc) 1.88 kB
{ "name": "vue-timeago", "version": "5.1.3", "productName": "Vue Timeago", "description": "A timeago filter for Vue.", "license": "MIT", "repository": "egoist/vue-timeago", "author": { "name": "EGOIST", "email": "0x142857@gmail.com", "url": "https://github.com/egoist" }, "scripts": { "test": "xo && npm run build", "build": "bili", "prepublishOnly": "npm run build", "example": "poi example/index.js -so" }, "main": "dist/vue-timeago.cjs.js", "module": "dist/vue-timeago.es.js", "unpkg": "dist/vue-timeago.js", "jsdelivr": "dist/vue-timeago.js", "cdn": "dist/vue-timeago.js", "files": [ "dist" ], "keywords": [ "timeago", "vue", "filter" ], "devDependencies": { "@egoist/vue-to-react": "^1.1.0", "bili": "^4.7.0", "commitizen": "^3.0.7", "cz-conventional-changelog": "^2.1.0", "demoboard": "^0.3.1", "eslint-config-prettier": "^4.1.0", "eslint-config-rem": "^4.0.0", "eslint-plugin-prettier": "^3.0.1", "gh-pages": "^1.0.0", "husky": "^1.3.1", "lint-staged": "^8.1.5", "poi": "^12.10.3", "postcss-nested": "^4.1.2", "prettier": "^1.16.4", "raw-loader": "^3.0.0", "semantic-release": "^17.3.6", "vue": "^2.6.9", "vue-template-compiler": "^2.6.9", "xo": "^0.24.0" }, "xo": { "extends": [ "rem", "plugin:prettier/recommended" ], "ignores": [ "example/**" ] }, "dependencies": { "date-fns": "^1.29.0" }, "husky": { "hooks": { "pre-commit": "lint-staged" } }, "lint-staged": { "*.{ts,json,md}": [ "prettier --write", "git add" ], "src/*.js": [ "xo --fix", "git add" ] }, "release": { "branch": "master" }, "config": { "commitizen": { "path": "./node_modules/cz-conventional-changelog" } } }