-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
35 lines (35 loc) · 979 Bytes
/
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
{
"name": "mergebounce",
"version": "0.1.1",
"description": "A debounce implementation that merges passed in objects before finally sending them to the debounced function",
"url": "https://github.com/conversejs/mergebounce",
"main": "mergebounce.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [
"debounce",
"merge"
],
"author": "JC Brand",
"license": "MIT",
"dependencies": {
"lodash-es": "^4.17.21",
"@converse/openpromise": "0.0.1"
},
"devDependencies": {
"@babel/core": "^7.14.6",
"@babel/preset-env": "^7.14.7",
"@rollup/plugin-babel": "^5.3.0",
"eslint": "^8.13.0",
"jasmine": "^4.1.0",
"jasmine-core": "^4.1.0",
"karma": "^6.2.0",
"karma-chrome-launcher": "^3.1.0",
"karma-jasmine": "^5.0.0",
"karma-jasmine-html-reporter": "^1.5.4",
"karma-spec-reporter": "0.0.34",
"rollup": "^2.41.5",
"rollup-plugin-includepaths": "^0.2.4"
}
}