-
Notifications
You must be signed in to change notification settings - Fork 19
/
package.json
59 lines (59 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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
{
"name": "p-iteration",
"version": "1.1.7",
"description": "Make array iteration easy when using async/await and Promises",
"main": "index.js",
"types": "index.d.ts",
"scripts": {
"test": "ava test/index.js",
"lint": "eslint lib test",
"generate-docs": "jsdoc -c .jsdoc.json -R README.md lib/static-methods.js"
},
"keywords": [
"async/await",
"async",
"await",
"asynchronous",
"awaitable",
"async function",
"array",
"iteration",
"forEach",
"map",
"every",
"some",
"filter",
"reduce"
],
"author": "Antonio Valverde",
"license": "MIT",
"devDependencies": {
"ava": "1.3.1",
"babel-eslint": "7.2.3",
"eslint": "4.0.0",
"jsdoc": "3.4.3",
"jsdoc-strip-async-await": "0.1.0",
"simple-jsdoc": "0.0.4"
},
"engines": {
"node": ">=8.0.0"
},
"browserify": {
"transform": [
[
"babelify",
{
"presets": [
"es2015",
"es2016",
"es2017"
]
}
]
]
},
"repository": {
"type": "git",
"url": "https://github.com/toniov/p-iteration"
}
}