-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
52 lines (52 loc) · 1.27 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
{
"name": "unawaited",
"version": "1.1.0",
"description": "Check for unawaited (floating) async function calls",
"keywords": [
"lint",
"floating",
"async",
"await",
"function"
],
"main": "./dist/index.js",
"bugs": {
"url": "https://github.com/miraries/unawaited/issues"
},
"homepage": "https://github.com/miraries/unawaited",
"repository": "github:miraries/unawaited",
"bin": {
"unawaited": "./dist/index.js"
},
"dependencies": {
"acorn-walk": "^8.1.1",
"acorn-with-stage3": "^1.0.2",
"chalk": "^4.1.2",
"clear": "^0.1.0",
"commander": "^8.1.0",
"debug": "^4.3.2",
"figlet": "^1.5.0",
"glob": "^7.1.7",
"lodash": "^4.17.21"
},
"devDependencies": {
"@types/acorn": "^4.0.6",
"@types/debug": "^4.1.7",
"@types/figlet": "^1.5.4",
"@types/glob": "^7.1.4",
"@types/lodash": "^4.14.171",
"@types/node": "^16.4.10",
"ts-node-dev": "^1.1.8",
"ts-standard": "^10.0.0",
"typescript": "^4.3.5"
},
"scripts": {
"start": "ts-node-dev --files src/index.ts",
"build": "tsc -p .",
"lint": "ts-standard",
"test": "echo \"Error: no test specified\" && exit 1",
"prepare": "npm run lint && npm run build"
},
"author": "Ivan Kotlaja",
"license": "GPL-3.0"
}