-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
71 lines (71 loc) · 1.95 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
68
69
70
71
{
"name": "n8n-nodes-woovi",
"description": "n8n nodes for Woovi",
"version": "0.3.0",
"author": {
"name": "Eduardo Maciel de Matos",
"email": "[email protected]"
},
"dependencies": {
"n8n-workflow": "^0.142.0"
},
"devDependencies": {
"@swc/core": "^1.3.42",
"@swc/jest": "^0.2.24",
"@types/jest": "^29.5.0",
"@types/node": "^18.13.0",
"@typescript-eslint/parser": "^5.51.0",
"eslint-plugin-n8n-nodes-base": "^1.11.0",
"gulp": "^4.0.2",
"husky": "^8.0.0",
"jest": "^29.5.0",
"lint-staged": "^13.2.0",
"n8n-core": "^0.160.0",
"n8n-nodes-base": "^0.219.0",
"nock": "^13.3.0",
"prettier": "^2.7.1",
"typescript": "~4.9.5"
},
"files": [
"dist"
],
"homepage": "https://woovi.com/",
"keywords": [
"n8n-community-node-package"
],
"license": "MIT",
"main": "index.js",
"n8n": {
"n8nNodesApiVersion": 1,
"credentials": [
"dist/credentials/WooviApi.credentials.js"
],
"nodes": [
"dist/nodes/Woovi/Woovi.node.js",
"dist/nodes/Woovi/WooviTrigger.node.js"
]
},
"lint-staged": {
"*.{js,ts,tsx}": [
"eslint --cache --fix",
"yarn prettier"
]
},
"repository": {
"type": "git",
"url": "https://github.com/entria/n8n-nodes-woovi"
},
"scripts": {
"build": "tsc -p tsconfig.build.json && gulp build:icons",
"dev": "tsc -p tsconfig.build.json --watch",
"format": "prettier nodes credentials --write",
"lint": "eslint nodes credentials package.json",
"lint:fix": "eslint nodes credentials package.json --fix",
"prepublishOnly": "npm run build && npm run lint -c .eslintrc.prepublish.js nodes credentials package.json",
"prettier": "prettier --write",
"release:major": "npm version major && git push --follow-tags",
"release:minor": "npm version minor && git push --follow-tags",
"release:patch": "npm version patch && git push --follow-tags",
"prepare": "husky install"
}
}