-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
95 lines (95 loc) · 2.33 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
87
88
89
90
91
92
93
94
95
{
"name": "each",
"description": "Chained and parallel async iterator in one elegant function.",
"version": "2.7.1",
"author": "David Worms <david@adaltas.com> (https://www.adaltas.com)",
"contributors": [
{
"name": "David Worms",
"email": "david@adaltas.com"
}
],
"devDependencies": {
"@commitlint/cli": "^19.5.0",
"@commitlint/config-conventional": "^19.5.0",
"@eslint/core": "^0.8.0",
"@eslint/js": "^9.14.0",
"eslint": "^9.14.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-mocha": "^10.5.0",
"eslint-plugin-prettier": "^5.2.1",
"husky": "^9.1.6",
"lint-staged": "^15.2.10",
"mocha": "~10.8.2",
"prettier": "^3.3.3",
"rollup": "^4.24.4",
"should": "~13.2.3",
"standard-version": "^9.5.0"
},
"engines": {
"node": ">= 0.9.0"
},
"exports": {
".": {
"import": {
"default": "./dist/each.esm.js"
},
"require": {
"default": "./dist/each.cjs.cjs"
}
}
},
"files": [
"/dist"
],
"homepage": "https://github.com/adaltas/node-each",
"keywords": [
"array",
"async",
"asynchronous",
"control flow",
"each",
"object",
"promise",
"iteration",
"loop",
"backend",
"frontend"
],
"license": "BSD-3-Clause",
"lint-staged": {
"*.js": "npm run lint:fix",
"*.md": "prettier -w"
},
"main": "dist/each.cjs.cjs",
"module": "dist/each.esm.js",
"mocha": {
"inline-diffs": true,
"recursive": true,
"reporter": "spec",
"require": [
"should"
],
"throw-deprecation": true,
"timeout": 40000
},
"repository": {
"type": "git",
"url": "https://github.com/adaltas/node-each.git"
},
"scripts": {
"build": "rollup -c",
"prepare": "husky install",
"lint:check": "eslint",
"lint:fix": "eslint --fix",
"lint:staged": "npx lint-staged",
"prerelease": "npm run build && git update-index --refresh && git diff-index --quiet HEAD --",
"release": "standard-version",
"release:minor": "standard-version --release-as minor",
"release:patch": "standard-version --release-as patch",
"release:major": "standard-version --release-as major",
"postrelease": "git push --follow-tags origin master",
"test": "mocha --node-flags '--unhandled-rejections=strict' test/*.js"
},
"type": "module"
}