1
|
{
|
2
|
"name": "async-limiter",
|
3
|
"version": "1.0.1",
|
4
|
"description": "asynchronous function queue with adjustable concurrency",
|
5
|
"keywords": [
|
6
|
"throttle",
|
7
|
"async",
|
8
|
"limiter",
|
9
|
"asynchronous",
|
10
|
"job",
|
11
|
"task",
|
12
|
"concurrency",
|
13
|
"concurrent"
|
14
|
],
|
15
|
"dependencies": {},
|
16
|
"devDependencies": {
|
17
|
"coveralls": "^3.0.3",
|
18
|
"eslint": "^5.16.0",
|
19
|
"eslint-plugin-mocha": "^5.3.0",
|
20
|
"intelli-espower-loader": "^1.0.1",
|
21
|
"mocha": "^6.1.4",
|
22
|
"nyc": "^14.1.1",
|
23
|
"power-assert": "^1.6.1"
|
24
|
},
|
25
|
"scripts": {
|
26
|
"test": "mocha --require intelli-espower-loader test/",
|
27
|
"travis": "npm run lint && npm run test",
|
28
|
"coverage": "nyc npm test && nyc report --reporter=text-lcov | coveralls",
|
29
|
"example": "node example",
|
30
|
"lint": "eslint ."
|
31
|
},
|
32
|
"repository": "https://github.com/strml/async-limiter.git",
|
33
|
"author": "Samuel Reed <samuel.trace.reed@gmail.com",
|
34
|
"license": "MIT"
|
35
|
}
|