-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
52 lines (52 loc) · 1.37 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": "eslint-plugin-no-await-in-promise",
"version": "2.0.1",
"description": "ESLint Plugin to error when using await inside promise statements",
"type": "module",
"packageManager": "[email protected]",
"keywords": [
"eslint",
"eslintplugin",
"eslint-plugin"
],
"repository": {
"type": "git",
"url": "git+https://github.com/hugo-vrijswijk/eslint-plugin-no-await-in-promise.git"
},
"license": "MIT",
"author": "Hugo van Rijswijk",
"main": "./dist/index.cjs",
"exports": {
".": {
"import": "./dist/index.js",
"require": "./dist/index.cjs"
}
},
"scripts": {
"check": "concurrently -c auto \"npm:lint:*\" \"npm:build\"",
"build": "tsup lib/index.ts --dts --sourcemap --format esm,cjs --target node18",
"lint:eslint": "eslint .",
"lint:prettier": "prettier --check .",
"test": "mocha tests --extension ts -r esbuild-register --recursive"
},
"devDependencies": {
"@eslint/js": "9.20.0",
"@types/eslint": "9.6.1",
"concurrently": "9.1.2",
"esbuild": "0.25.0",
"esbuild-register": "3.6.0",
"eslint": "9.20.0",
"eslint-plugin-eslint-plugin": "6.4.0",
"mocha": "11.1.0",
"prettier": "3.5.0",
"tsup": "8.3.6",
"typescript": "5.7.3",
"typescript-eslint": "8.23.0"
},
"engines": {
"node": "^18.17.0 || >= 20.0.0"
},
"peerDependencies": {
"eslint": ">=8"
}
}