forked from phewphewb/eslint-plugin
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.41 KB
/
Copy pathpackage.json
File metadata and controls
46 lines (46 loc) · 1.41 KB
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": "@fullscript/eslint-plugin",
"version": "3.2.0",
"description": "Fullscript custom eslint rules",
"main": "dist/index.js",
"contributors": [
"Hossam Mourad",
"Ryan O'Connor <charle692@gmail.com>",
"Aidan Feuerherm <aidan.feuerherm@fullscript.com>",
"Valentyn Patsera <valentyn.patsera@fullscript.com>",
"Omar Nasr <omar.nasr@fullscript.com>",
"Asuka Kuwahara <asuka.kuwahara@fullscript.com>",
"Benaiah Barango <benaiah.barango@fullscript.com>",
"Matthew Young <matthew.young@fullscript.com>"
],
"license": "MIT",
"scripts": {
"prettier-format": "prettier --loglevel 'warn' --write './src/**/*.ts'",
"prettier-diff": "prettier --loglevel 'warn' --check './src/**/*.ts'",
"build": "swc ./src -d dist",
"build-watch": "swc ./src -d dist -w",
"test": "jest",
"type-check": "tsc --noEmit"
},
"dependencies": {
"js-yaml": "^4.1.0"
},
"devDependencies": {
"@swc/cli": "^0.1.57",
"@swc/core": "^1.3.20",
"@swc/jest": "^0.2.23",
"@types/jest": "^29.5.12",
"@types/node": "^20.12.4",
"@typescript-eslint/parser": "^7.13.0",
"@typescript-eslint/rule-tester": "^7.13.0",
"@typescript-eslint/utils": "^7.13.0",
"chokidar": "^3.5.3",
"core-js": "^3.26.1",
"eslint": "^8.50.0",
"husky": "^8.0.0",
"jest": "^29.3.1",
"prettier": "^2.8.0",
"typescript": "^5.4.4"
},
"packageManager": "yarn@4.9.1"
}