-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
46 lines (46 loc) · 1.19 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
{
"name": "esbuild-plugin-eslinter",
"version": "0.1.4",
"description": "esbuild plugin for integrating eslint with built in caching and node_module skipping",
"keywords": [
"esbuild",
"eslint",
"plugin",
"typescript",
"eslinter"
],
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "tsc",
"test": "ts-node test/esbuild.config.ts"
},
"author": "TurtIeSocks <58572875+TurtIeSocks@users.noreply.github.com>",
"homepage": "https://github.com/TurtIeSocks/esbuild-plugin-eslinter#readme",
"bugs": {
"url": "https://github.com/TurtIeSocks/esbuild-plugin-eslinter/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/TurtIeSocks/esbuild-plugin-eslinter.git"
},
"license": "MIT",
"files": [
"dist"
],
"devDependencies": {
"@types/eslint": "^8.0.0",
"@types/node": "^17.0.21",
"@typescript-eslint/eslint-plugin": "^5.12.1",
"@typescript-eslint/parser": "^5.12.1",
"esbuild": "^0.15.0",
"eslint": "^8.9.0",
"prettier": "^2.5.1",
"ts-node": "^10.5.0",
"typescript": "^4.5.5"
},
"peerDependencies": {
"esbuild": "^0.15.0 || ^0.16.0",
"eslint": "^8.0.0"
}
}