-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
44 lines (44 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
{
"name": "@tinymce/eslint-plugin",
"version": "2.4.1-rc",
"description": "Plugin for ESLint containing Tiny Technologies Inc. standard linting rules",
"author": "Tiny Technologies Inc.",
"main": "dist/main/ts/api/Main.js",
"repository": "[email protected]:tinymce/eslint-plugin.git",
"license": "Apache-2.0",
"dependencies": {
"@stylistic/eslint-plugin": "^2.12.1",
"@typescript-eslint/eslint-plugin": "^8.19.1",
"@typescript-eslint/parser": "^8.19.1",
"eslint": "^8.57.0",
"eslint-plugin-import": "2.26.0",
"eslint-plugin-mocha": "^10.1.0",
"eslint-plugin-prefer-arrow": "^1.2.3",
"resolve": "^1.22.10",
"typescript": "^5.7.2"
},
"devDependencies": {
"@tinymce/beehive-flow": "^0.19.0",
"@types/eslint": "^8.56.0",
"@types/estree": "^1.0.6",
"@types/node": "^22.10.5",
"@types/resolve": "^1.20.6",
"@typescript-eslint/typescript-estree": "^8.19.1",
"jest": "^29.7.0",
"ts-jest": "^29.2.5"
},
"files": [
"dist/main",
"README.md",
"LICENSE.txt"
],
"scripts": {
"build": "tsc",
"lint": "eslint src/**/*.ts",
"test": "jest",
"prepublishOnly": "tsc"
},
"engines": {
"node": ">=9.0.0"
}
}