UNPKG

754 BJSONView Raw
1{
2 "name": "p-iteration",
3 "version": "1.0.0",
4 "description": "Make array iteration easy with async/await and promises",
5 "main": "index.js",
6 "scripts": {
7 "test": "ava test/index.js",
8 "lint": "eslint lib test"
9 },
10 "keywords": [
11 "async/await",
12 "async",
13 "await",
14 "asynchronous",
15 "awaitable",
16 "async function",
17 "array",
18 "iteration",
19 "forEach",
20 "map",
21 "every",
22 "some",
23 "filter",
24 "reduce"
25 ],
26 "author": "Antonio Valverde",
27 "license": "ISC",
28 "devDependencies": {
29 "ava": "^0.19.1",
30 "babel-eslint": "^7.2.3",
31 "eslint": "^4.0.0"
32 },
33 "engines": {
34 "node": ">=8.0.0"
35 },
36 "repository": {
37 "type": "git",
38 "url": "https://github.com/toniov/p-iteration"
39 }
40}