-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
39 lines (39 loc) · 962 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-throttler",
"version": "1.0.0",
"homepage": "https://github.com/cnrudd/promise-throttler",
"description": "A library to throttle promises",
"main": "lib/main.js",
"author": "Colin Rudd",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/cnrudd/promise-throttler.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"
},
"jest": {
"verbose": true,
"testURL": "http://localhost/"
},
"keywords": [
"promise",
"throttle"
],
"files": [
"lib/main.js"
],
"devDependencies": {
"coveralls": "~3.0.2",
"eslint": "^5.6.0",
"jest-cli": "^23.6.0",
"promise": "^8.0.2",
"sinon": "^6.3.4",
"browserify": "^16.2.2"
}
}