-
Notifications
You must be signed in to change notification settings - Fork 51
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 849 Bytes
/
package.json
File metadata and controls
38 lines (38 loc) · 849 Bytes
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": "batch",
"description": "Simple async batch with concurrency control and progress reporting.",
"version": "0.6.1",
"author": "TJ Holowaychuk <tj@vision-media.ca>",
"license": "MIT",
"repository": "visionmedia/batch",
"keywords": [
"batch",
"async",
"utility",
"concurrency",
"concurrent"
],
"devDependencies": {
"after": "0.8.2",
"eslint": "7.32.0",
"eslint-plugin-markdown": "3.0.0",
"mocha": "10.0.0",
"nyc": "15.1.0"
},
"main": "index",
"browser": {
"emitter": "events"
},
"files": [
"History.md",
"LICENSE",
"Readme.md",
"index.js"
],
"scripts": {
"lint": "eslint .",
"test": "mocha --check-leaks",
"test-ci": "nyc --reporter=lcovonly --reporter=text npm test",
"test-cov": "nyc --reporter=html --reporter=text npm test"
}
}