-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
35 lines (35 loc) · 965 Bytes
/
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
{
"name": "porch",
"description": "Promise Orchestrator: Process promise-based tasks in series and parallel, controlling concurrency and throttling",
"version": "2.0.1",
"type": "module",
"exports": {
".": {
"import": "./dist/porch.mjs",
"require": "./dist/porch.cjs"
}
},
"main": "./dist/porch.cjs",
"browser": "./dist/porch.umd.cjs",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/lupomontero/porch.git"
},
"scripts": {
"pretest": "eslint .",
"test": "vitest --coverage",
"build": "vite build",
"postbuild": "ln -s ./porch.umd.cjs ./dist/porch-browser.min.js",
"changelog": "git log $(git describe --tags --abbrev=0)..HEAD --oneline --format=\"* %h %s\""
},
"devDependencies": {
"@vitest/coverage-v8": "^2.1.7",
"eslint": "^9.16.0",
"vite": "^6.0.2",
"vitest": "^2.1.7"
},
"engines": {
"node": "^12.20.0 || ^14.13.1 || >=16.0.0"
}
}