This repository has been archived by the owner on Aug 21, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathpackage.json
64 lines (64 loc) · 1.69 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
{
"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"
}
}