-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
61 lines (61 loc) · 1.8 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
{
"name": "${{#REPO_NAME#}}",
"version": "1.0.0",
"description": "This is a basis for community n8n nodes.",
"keywords": [
"n8n-community-node-package"
],
"main": "index.js",
"scripts": {
"lint": "eslint nodes credentials package.json --no-error-on-unmatched-pattern",
"lint:fix": "eslint nodes credentials package.json --no-error-on-unmatched-pattern --fix",
"build": "tsc && gulp build:icons",
"prepare": "npm run build",
"dev": "tsc --watch",
"format": "prettier nodes credentials --write"
},
"prettier": "eslint-config-n8n-nodes-base/prettierrc",
"files": [
"dist"
],
"n8n": {
"n8nNodesApiVersion": 1,
"credentials": [],
"nodes": []
},
"repository": {
"type": "git",
"url": "git+https://github.com/${{#REPO_FULLNAME#}}.git"
},
"author": {
"name": "${{#REPO_OWNER#}}"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/${{#REPO_FULLNAME#}}/issues"
},
"homepage": "https://github.com/${{#REPO_FULLNAME#}}#readme",
"devDependencies": {
"@types/express": "^4.17.13",
"@types/node": "^18.6.3",
"@types/request-promise-native": "^1.0.18",
"@typescript-eslint/eslint-plugin": "^5.32.0",
"@typescript-eslint/parser": "^5.32.0",
"eslint": "^8.22.0",
"eslint-config-n8n-nodes-base": "^1.1.2",
"eslint-plugin-deprecation": "^1.3.2",
"eslint-plugin-eslint-plugin": "^5.0.2",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jsdoc": "^39.3.4",
"eslint-plugin-n8n-nodes-base": "^1.6.5",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-promise": "^6.0.0",
"eslint-plugin-simple-import-sort": "^7.0.0",
"gulp": "^4.0.2",
"n8n-core": "^0.128.0",
"n8n-workflow": "^0.110.0",
"prettier": "^2.7.1",
"prettier-plugin-jsdoc": "^0.3.38",
"typescript": "^4.7.4"
}
}