-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
43 lines (43 loc) · 1.14 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
{
"name": "@tinymce/eslint-plugin",
"version": "2.4.0-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": {
"@typescript-eslint/eslint-plugin": "^5.59.5",
"@typescript-eslint/parser": "^5.59.5",
"eslint": "^8.40.0",
"eslint-plugin-import": "2.26.0",
"eslint-plugin-mocha": "^10.1.0",
"eslint-plugin-prefer-arrow": "^1.2.3",
"resolve": "^1.17.0",
"typescript": "^4.9.5"
},
"devDependencies": {
"@tinymce/beehive-flow": "^0.19.0",
"@types/eslint": "^8.37.0",
"@types/estree": "^1.0.1",
"@types/node": "^20.1.3",
"@types/resolve": "^1.17.1",
"@typescript-eslint/typescript-estree": "^5.59.5",
"jest": "^27.3.1",
"ts-jest": "^27.0.7"
},
"files": [
"dist/main",
"README.md",
"LICENSE.txt"
],
"scripts": {
"build": "tsc",
"lint": "eslint src/**/*.ts",
"test": "jest",
"prepublishOnly": "tsc"
},
"engines": {
"node": ">=9.0.0"
}
}