-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
34 lines (34 loc) · 872 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
{
"name": "promise-assist",
"description": "Several helper functions when working with native promises",
"version": "2.0.1",
"main": "./dist/cjs/index.js",
"module": "./dist/esm/index.js",
"types": "./dist/esm/index.d.ts",
"scripts": {
"clean": "node scripts/clean.mjs",
"prebuild": "npm run clean",
"build": "tsc --build",
"pretest": "npm run build",
"test": "node --test --enable-source-maps",
"prepack": "npm run build"
},
"devDependencies": {
"@types/node": "20",
"typescript": "~5.7.3"
},
"files": [
"dist",
"src",
"!dist/cjs/test",
"!src/test"
],
"engines": {
"node": ">=20"
},
"sideEffects": false,
"author": "Avi Vahl <[email protected]>",
"license": "MIT",
"repository": "https://github.com/AviVahl/promise-assist",
"homepage": "https://github.com/AviVahl/promise-assist"
}