-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
86 lines (86 loc) · 1.74 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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
{
"name": "p-iterate",
"version": "1.0.0",
"author": {
"name": "ninevra",
"email": "[email protected]"
},
"license": "ISC",
"description": "Iterate over promises as they're fulfilled.",
"keywords": [
"promise",
"fulfill",
"fulfilled",
"settle",
"settled",
"iterate",
"async",
"iterable",
"async iterable",
"asyncIterable",
"generator",
"async generator"
],
"repository": {
"type": "git",
"url": "https://github.com/ninevra/p-iterate.git"
},
"bugs": {
"url": "https://github.com/ninevra/p-iterate"
},
"homepage": "https://github.com/ninevra/p-iterate#readme",
"type": "module",
"exports": {
"import": "./dist/index.js",
"require": "./dist/index.cjs"
},
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"module": "./dist/index.js",
"files": [
"dist/index.cjs",
"dist/index.js",
"dist/index.d.ts"
],
"scripts": {
"build": "tsc && rollup -c",
"test": "xo && npm run build && c8 ava",
"bench": "npm run test && node ./bench.js"
},
"devDependencies": {
"ava": "^4.0.0-alpha.2",
"benny": "^3.6.15",
"c8": "^7.7.0",
"expect-type": "^0.11.0",
"frstcmfrstsvd": "^1.0.7",
"rollup": "^2.44.0",
"rollup-plugin-sourcemaps": "^0.6.3",
"typescript": "^4.2.3",
"xo": "^0.38.2"
},
"prettier": {
"singleQuote": true,
"trailingComma": "es5",
"bracketSpacing": true
},
"xo": {
"prettier": true,
"space": true
},
"ava": {
"files": [
"dist/test.js",
"test.smoke.cjs",
"test.smoke.js"
],
"snapshotDir": "snapshots"
},
"c8": {
"exclude": [
"test.ts",
"test.smoke.cjs",
"test.smoke.js"
],
"excludeAfterRemap": true
}
}