-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
58 lines (58 loc) · 1.46 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
{
"name": "n8n-nodes-chatwork",
"version": "1.1.2",
"keywords": [
"n8n",
"nodemation",
"nodes",
"custom",
"chatwork",
"workflow",
"n8n-community-node-package"
],
"repository": {
"type": "git",
"url": "git+https://github.com/hoangsetup/n8n-nodes-chatwork.git"
},
"issue": "https://github.com/hoangsetup/n8n-nodes-chatwork/issues",
"author": "hoangdv <hoang.dv@outlook.com>",
"license": "GPL-3.0",
"description": "Provides n8n nodes to retrieve data from Chatwork API.",
"main": "index.js",
"devDependencies": {
"@types/jest": "^29.5.12",
"gulp": "^4.0.2",
"jest": "^29.7.0",
"n8n": "^1.41.1",
"n8n-workflow": "^1.36.1",
"nodemon": "^3.1.0",
"ts-jest": "^29.1.2",
"tslint": "^6.1.3",
"typescript": "^5.4.5"
},
"scripts": {
"prebuild": "rm -rf dist",
"build": "npx tsc -b tsconfig.build.json && gulp",
"dev": "npm run watch & npm run n8n:watch",
"tslint": "tslint -p tsconfig.json -c tslint.json",
"watch": "tsc --watch",
"n8n": "n8n start",
"n8n:watch": "nodemon --exec npm run n8n",
"prerelease": "npm run build",
"release": "npm publish",
"test": "jest --passWithNoTests",
"test:coverage": "npm run test -- --coverage",
"lint": "tslint --project ."
},
"files": [
"dist"
],
"n8n": {
"credentials": [
"dist/credentials/Chatwork.credentials.js"
],
"nodes": [
"dist/nodes/Chatwork/Chatwork.node.js"
]
}
}