-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
49 lines (49 loc) · 1.16 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
{
"name": "async-utility",
"version": "2.0.0",
"author": "Chang Zhe Jiet",
"description": "Convert async function to sync function.",
"keywords": [
"async",
"sync",
"await",
"promise",
"deasync"
],
"files": [
"dist/**/*"
],
"homepage": "https://github.com/ahzhezhe/async-utility#readme",
"repository": {
"type": "git",
"url": "https://github.com/ahzhezhe/async-utility"
},
"license": "ISC",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"lint": "eslint src/**/*.ts test/**/*.ts",
"jest": "jest",
"test": "ts-node test.ts",
"build": "tsc",
"prepublishOnly": "rm -rf dist && tsc",
"postpublish": "rm -rf dist",
"postversion": "git push"
},
"dependencies": {
"deasync": "^0.1.30"
},
"devDependencies": {
"@types/deasync": "^0.1.5",
"@types/jest": "^29.5.0",
"@typescript-eslint/eslint-plugin": "^5.55.0",
"@typescript-eslint/parser": "^5.55.0",
"eslint": "^8.36.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-security": "^1.7.1",
"jest": "^29.5.0",
"ts-jest": "^29.0.5",
"ts-node": "^10.9.2",
"typescript": "^5.6.3"
}
}