-
Notifications
You must be signed in to change notification settings - Fork 27
/
package.json
47 lines (47 loc) · 1.36 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
{
"name": "debounce-promise",
"version": "3.1.2",
"description": "Create a debounced version of a promise returning function",
"main": "dist/index",
"runkitExampleFilename": "./example.js",
"scripts": {
"test": "tap --node-arg -r --node-arg babel-register --node-arg -r --node-arg babel-polyfill test && npm run lint",
"lint": "standard | snazzy",
"compile": "babel index.js --source-maps --out-dir dist",
"clean": "rimraf dist",
"prepare": "in-publish && npm run compile || not-in-publish",
"postpublish": "in-publish && npm run clean || not-in-publish"
},
"repository": {
"type": "git",
"url": "git+https://github.com/bjoerge/debounce-promise.git"
},
"keywords": [
"promise",
"batch",
"accumulate",
"debounce",
"throttle",
"ratelimit"
],
"author": "Bjørge Næss",
"license": "MIT",
"bugs": {
"url": "https://github.com/bjoerge/debounce-promise/issues"
},
"homepage": "https://github.com/bjoerge/debounce-promise",
"devDependencies": {
"babel-cli": "^6.5.2",
"babel-plugin-transform-async-to-generator": "^6.16.0",
"babel-polyfill": "^6.16.0",
"babel-preset-es2015": "^6.16.0",
"babel-register": "^6.16.3",
"eslint": "^3.8.0",
"in-publish": "^2.0.0",
"rimraf": "^2.5.4",
"snazzy": "^5.0.0",
"standard": "^8.4.0",
"tap": "^7.1.2"
},
"dependencies": {}
}