-
-
Notifications
You must be signed in to change notification settings - Fork 11
/
package.json
39 lines (39 loc) · 961 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
36
37
38
39
{
"name": "promise-throttle",
"version": "1.1.2",
"homepage": "https://github.com/jmperez/promise-throttle",
"description": "A library to throttle promises",
"main": "lib/main.js",
"author": "Jose M. Perez",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/jmperez/promise-throttle.git"
},
"scripts": {
"start": "npm run dist",
"dist": "mkdir -p dist && browserify lib/browser.js -o dist/promise-throttle.js",
"lint": "eslint lib/*.js",
"test": "npm run lint && jest --coverage",
"travis": "npm test && cat ./coverage/lcov.info | coveralls"
},
"keywords": [
"promise",
"throttle"
],
"files": [
"lib/main.js",
"index.d.ts"
],
"devDependencies": {
"browserify": "^16.5.1",
"coveralls": "^3.1.0",
"eslint": "^6.1.0",
"jest-cli": "^26.0.0",
"promise": "^8.1.0",
"sinon": "^9.0.2"
},
"jest": {
"testURL": "http://localhost/"
}
}