-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
53 lines (53 loc) · 1.18 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
{
"name": "@kaciras/deasync",
"version": "1.1.0",
"description": "Turns async code into sync via JavaScript wrapper of Node event loop, support both callback and promise",
"author": "Kaciras <Kaciras@outlook.com>",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/Kaciras/deasync.git"
},
"homepage": "https://github.com/Kaciras/deasync",
"keywords": [
"async",
"sync",
"syncify",
"promise",
"async wrapper"
],
"engines": {
"node": ">=20"
},
"main": "index.js",
"types": "index.d.ts",
"files": [
"binding.gyp",
"src",
"script",
"index.js",
"index.d.ts"
],
"scripts": {
"install": "node script/prebuild.js install",
"lint": "eslint --fix",
"compile:ts": "tsc",
"test": "mocha && tsc --project tsconfig-test.json",
"test:coverage": "c8 --reporter=lcov mocha"
},
"dependencies": {
"follow-redirects": "^1.15.9",
"tar-fs": "^3.0.8"
},
"devDependencies": {
"@kaciras/eslint-config-core": "^3.2.1",
"@kaciras/eslint-config-typescript": "^3.2.1",
"@types/mocha": "^10.0.10",
"@types/node": "^22.13.7",
"c8": "^10.1.3",
"eslint": "^9.21.0",
"mocha": "^11.1.0",
"ts-directly": "^2.1.2",
"typescript": "^5.8.2"
}
}