-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 1.13 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
{
"name": "map-each",
"version": "1.0.0",
"description": "A very small, flexible, parallel async mapping helper that has first-class support for Iterators and concurrency.",
"main": "index.js",
"scripts": {
"test": "npm run test:lint && npm run test:unit",
"test:lint": "standard",
"test:unit": "tap test/**/*.js test/*.js",
"test:ci": "npm run test:lint && npm run test:unit -- --cov --coverage-report=lcov",
"release": "standard-version"
},
"keywords": [
"async",
"iteration",
"mapping",
"foreach",
"parallel",
"each",
"iterable",
"iterator"
],
"author": "Martin Heidegger <martin.heidegger@gmail.com>",
"license": "MIT",
"devDependencies": {
"standard": "^12.0.1",
"standard-version": "^4.4.0",
"tap": "^12.1.1"
},
"directories": {
"test": "test"
},
"dependencies": {
"setimmediate2": "^3.0.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/martinheidegger/map-each.git"
},
"bugs": {
"url": "https://github.com/martinheidegger/map-each/issues"
},
"homepage": "https://github.com/martinheidegger/map-each#readme"
}