-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 1.08 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
{
"name": "@dvlden/await-it",
"version": "1.0.6",
"description": "A wrapper for async/await calls without the need of try/catch block.",
"keywords": [
"async/await",
"try/catch",
"wrapper"
],
"main": "dist/index.js",
"module": "dist/index.esm.js",
"typings": "dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "rollup --config rollup.config.ts --configPlugin typescript",
"test": "vitest"
},
"homepage": "https://github.com/dvlden/await-it#readme",
"bugs": "https://github.com/dvlden/await-it/issues",
"repository": "github:dvlden/await-it",
"author": {
"name": "Nenad Novaković",
"email": "[email protected]",
"url": "https://dvl.sh/"
},
"license": "MIT",
"packageManager": "[email protected]",
"devDependencies": {
"@dvlden/config": "^0.0.1",
"@rollup/plugin-typescript": "^11.1.1",
"esbuild": "^0.18.2",
"prettier": "^2.8.8",
"rollup": "^3.25.1",
"rollup-plugin-dts": "^5.3.0",
"rollup-plugin-esbuild": "^5.0.0",
"tslib": "^2.5.3",
"typescript": "^5.1.3",
"vitest": "^0.32.0"
}
}