-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
43 lines (43 loc) · 1.04 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
{
"keywords": [
"debounce",
"mini",
"tiny",
"small",
"tiny-debounce",
"ts-debounce",
"mini-debounce"
],
"name": "mini-debounce",
"version": "1.0.7",
"description": "Extremely small and modern debounce library (smaller than tiny-debounce)",
"main": "dist/index.js",
"module": "dist/index.m.js",
"umd:main": "dist/index.umd.js",
"types": "index.d.ts",
"author": "Christopher Holden Brown <[email protected]> (https://chrisbrown.netlify.com)",
"license": "MIT",
"private": false,
"homepage": "https://github.com/ChrisBrownie55/mini-debounce",
"bugs": "https://github.com/ChrisBrownie55/mini-debounce/issues",
"repository": "[email protected]:ChrisBrownie55/mini-debounce.git",
"files": [
"dist/**",
"index.d.ts"
],
"scripts": {
"build": "rm -r dist/ && microbundle --raw --no-sourcemap",
"test": "ava"
},
"devDependencies": {
"ava": "^2.4.0",
"esm": "^3.2.18",
"microbundle": "^0.11.0",
"terser": "^4.3.8"
},
"ava": {
"require": [
"esm"
]
}
}