UNPKG

vue-unique-id

Version:

Component and HTML unique id generation plugin for Vue.js

65 lines (64 loc) 1.73 kB
{ "name": "vue-unique-id", "version": "3.2.1", "description": "Component and HTML unique id generation plugin for Vue.js", "main": "dist/vue-unique-id.common.js", "module": "dist/vue-unique-id.esm.js", "unpkg": "dist/vue-unique-id.js", "types": "types/index.d.ts", "files": [ "dist/**/*", "types/*.d.ts" ], "scripts": { "dev:dist": "rollup --watch --sourcemap --config build/rollup.dev.config.js", "build": "node build/build.js", "lint": "eslint src test build", "test": "npm run test:unit && npm run test:types", "test:unit": "mocha test --recursive --require esm", "test:types": "tsc -p types/test", "posttest": "npm run lint", "prepare": "npm run build", "prepublishOnly": "npm run test" }, "repository": { "type": "git", "url": "git+https://github.com/berniegp/vue-unique-id.git" }, "keywords": [ "vue", "vuejs", "vue-plugin", "id", "id-generator", "scoped-id", "html", "form", "label" ], "author": "Bertrand Guay-Paquet <bernie@step.polymtl.ca>", "license": "ISC", "bugs": { "url": "https://github.com/berniegp/vue-unique-id/issues" }, "homepage": "https://github.com/berniegp/vue-unique-id#readme", "devDependencies": { "@rollup/plugin-buble": "^0.21.3", "@rollup/plugin-replace": "^2.4.2", "@vue/test-utils": "^1.2.0", "chai": "^4.3.4", "eslint": "^7.26.0", "eslint-config-airbnb-base": "^14.2.1", "eslint-plugin-import": "^2.22.1", "esm": "^3.2.25", "mocha": "^8.4.0", "rollup": "^2.47.0", "terser": "^5.7.0", "typescript": "^4.2.4", "vue": "^2.6.12", "vue-template-compiler": "^2.6.12" }, "engines": { "node": ">=10.0.0" } }