package.json
 1  {
 2  	"name": "p-each-series",
 3  	"version": "2.2.0",
 4  	"description": "Iterate over promises serially",
 5  	"license": "MIT",
 6  	"repository": "sindresorhus/p-each-series",
 7  	"funding": "https://github.com/sponsors/sindresorhus",
 8  	"author": {
 9  		"name": "Sindre Sorhus",
10  		"email": "sindresorhus@gmail.com",
11  		"url": "https://sindresorhus.com"
12  	},
13  	"engines": {
14  		"node": ">=8"
15  	},
16  	"scripts": {
17  		"test": "xo && ava && tsd"
18  	},
19  	"files": [
20  		"index.js",
21  		"index.d.ts"
22  	],
23  	"keywords": [
24  		"promise",
25  		"foreach",
26  		"for-each",
27  		"for",
28  		"each",
29  		"collection",
30  		"iterable",
31  		"iterator",
32  		"fulfilled",
33  		"async",
34  		"await",
35  		"promises",
36  		"serial",
37  		"serially",
38  		"series",
39  		"bluebird"
40  	],
41  	"devDependencies": {
42  		"ava": "^1.4.1",
43  		"delay": "^4.1.0",
44  		"time-span": "^3.0.0",
45  		"tsd": "^0.7.2",
46  		"xo": "^0.24.0"
47  	}
48  }