-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
59 lines (59 loc) · 1.4 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
{
"name": "@three11/debounce",
"version": "1.1.0",
"description": "Debounce multiple function executions",
"keywords": [
"Debounce",
"Function delay",
"Function wait"
],
"homepage": "https://github.com/three11/debounce#readme",
"bugs": {
"url": "https://github.com/three11/debounce/issues"
},
"license": "GPL-3.0",
"authors": [
{
"name": "Three 11 Ltd",
"email": "hello@three-11.com",
"role": "Developer"
},
{
"name": "Alexander Panayotov",
"email": "alexander.panayotov@gmail.com",
"role": "Developer"
},
{
"name": "Atanas Atanasov",
"email": "scriptex.bg@gmail.com",
"role": "Developer"
}
],
"main": "dist/debounce.js",
"types": "dist/debounce.d.ts",
"repository": {
"type": "git",
"url": "git+https://github.com/three11/debounce.git"
},
"scripts": {
"lint": "eslint 'src/**/*.ts'",
"test": "yarn build && node --experimental-specifier-resolution=node --loader ts-node/esm tests/index.mts",
"build": "rollup -c"
},
"dependencies": {},
"devDependencies": {
"@rollup/plugin-commonjs": "25.0.8",
"@rollup/plugin-typescript": "11.1.6",
"@types/node": "20.17.6",
"@types/tape": "5.6.4",
"@typescript-eslint/eslint-plugin": "6.21.0",
"@typescript-eslint/parser": "6.21.0",
"eslint": "8.57.1",
"eslint-config-prettier": "9.1.0",
"rollup": "4.25.0",
"tape": "5.9.0",
"ts-node": "10.9.2",
"tslib": "2.8.1",
"typescript": "5.6.3"
}
}