-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
38 lines (38 loc) · 1.01 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
{
"name": "promise-debounce-pool",
"version": "1.4.0",
"description": "Maintains a pool of leading edge debounced promises.",
"repository": {
"type": "git",
"url": "https://github.com/rs-saunders/promise-debounce-pool.git"
},
"keywords": [
"promise",
"promises",
"debounce",
"debouncing",
"pool",
"ajax"
],
"main": "promise-debounce-pool.min.js",
"runkitExampleFilename": "example.runkit.js",
"scripts": {
"test": "jasmine",
"minify": "uglifyjs ./promise-debounce-pool.js -c -m --source-map \"filename='promise-debounce-pool.min.map'\" -o ./promise-debounce-pool.min.js"
},
"author": "Richard Saunders <richard@sdevsolutions.com>",
"files": [
"example.runkit.js",
"promise-debounce-pool.js",
"promise-debounce-pool.min.js",
"promise-debounce-pool.min.map"
],
"bugs": {
"url": "https://github.com/rs-saunders/promise-debounce-pool/issues"
},
"license": "MIT",
"devDependencies": {
"jasmine": "^2.5.3",
"uglify-js": "^3.1.1"
}
}