-
Notifications
You must be signed in to change notification settings - Fork 15
/
package.json
61 lines (61 loc) · 1.44 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
{
"name": "vue-debounce",
"version": "5.0.1",
"description": "A simple vue directive for debounce",
"module": "src/index.js",
"main": "src/index.js",
"types": "types/index.d.ts",
"type": "module",
"unpkg": "dist/vueDebounce.min.js",
"jsdelivr": "dist/vueDebounce.min.js",
"scripts": {
"test": "tape tests/test.js | tap-on",
"prepack": "npm run lint && npm run build",
"build": "rollup -c",
"watch": "rollup -c -w",
"lint": "standard src/*.js",
"lint:fix": "standard --fix src/*.js"
},
"standard": {
"ignore": [
"dist/*",
"types/*"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/dhershman1/vue-debounce.git"
},
"keywords": [
"vue",
"vue3",
"debounce",
"directive",
"simple",
"v-debounce",
"events"
],
"author": "Dustin Hershman <dustinh17@gmail.com>",
"contributors": [
"Tommy May III <tommymay37@gmail.com>"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/dhershman1/vue-debounce/issues"
},
"homepage": "https://github.com/dhershman1/vue-debounce#readme",
"devDependencies": {
"@babel/core": "7.23.5",
"@babel/preset-env": "7.23.5",
"@rollup/plugin-babel": "6.0.4",
"@rollup/plugin-terser": "0.4.4",
"rollup": "^4.6.1",
"rollup-plugin-filesize": "9.1.2",
"standard": "^17.1.0",
"tap-on": "0.3.1",
"tape": "^5.7.2"
},
"peerDependencies": {
"vue": ">= 3.0.0"
}
}