forked from ivov/eslint-plugin-n8n-nodes-base
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
67 lines (67 loc) · 1.83 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
{
"name": "eslint-plugin-n8n-nodes-base",
"version": "1.12.1",
"main": "dist/index.js",
"author": {
"name": "Iván Ovejero",
"url": "https://ivov.dev"
},
"license": "MIT",
"files": [
"dist/index.js",
"dist/lib/**/*"
],
"repository": {
"type": "git",
"url": "https://github.com/ivov/eslint-plugin-n8n-nodes-base.git"
},
"keywords": [
"n8n",
"eslint-plugin"
],
"scripts": {
"build": "node scripts/build.mjs",
"typecheck": "tsc --noEmit",
"doc": "npm run build; node scripts/make-docs.mjs",
"format": "prettier lib scripts tests --write",
"lint-plugin": "eslint lib tests --ext .ts",
"lint-codebase": "chmod +x scripts/lint-codebase.sh && scripts/lint-codebase.sh",
"test": "jest",
"test:watch": "jest --watch"
},
"dependencies": {
"@typescript-eslint/utils": "^5.17.0",
"camel-case": "^4.1.2",
"indefinite": "^2.4.1",
"pascal-case": "^3.1.2",
"pluralize": "^8.0.0",
"prettier": "^2.7.1",
"sentence-case": "^3.0.4",
"title-case": "^3.0.3"
},
"devDependencies": {
"@types/indefinite": "^2.3.1",
"@types/node": "^17.0.21",
"@types/pluralize": "0.0.29",
"@typescript-eslint/eslint-plugin": "^5.33.0",
"@typescript-eslint/parser": "^5.51.0",
"esbuild": "0.15.5",
"esbuild-jest": "^0.5.0",
"eslint": "8.34.0",
"eslint-config-airbnb-typescript": "^17.0.0",
"eslint-config-prettier": "^8.5.0",
"eslint-docgen": "^0.7.1",
"eslint-plugin-eslint-plugin": "^5.0.2",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-local": "^1.0.0",
"eslint-plugin-prettier": "^4.2.1",
"jest": "^28.1.3",
"list-github-dir-content": "^3.0.0",
"node-fetch": "^3.2.10",
"outdent": "^0.8.0",
"p-map": "^5.5.0",
"shelljs": "^0.8.5",
"tiny-glob": "^0.2.9",
"typescript": "^4.6.2"
}
}