forked from CodelyTV/n8n-nodes-twitch
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
80 lines (80 loc) · 1.88 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
72
73
74
75
76
77
78
79
80
{
"name": "@r3-dev/n8n-nodes-twitch",
"version": "1.3.4",
"description": "n8n node for Twitch: Execute workflows on stream start, stream end, and new follows.",
"keywords": [
"n8n",
"n8n-node",
"n8n-nodes",
"node",
"twitch",
"streaming",
"typescript",
"n8n-community-node-package"
],
"license": "GPL-3.0",
"homepage": "https://github.com/r3-dev/n8n-nodes-twitch#readme",
"bugs": {
"url": "https://github.com/r3-dev/n8n-nodes-twitch/issues"
},
"author": {
"name": "r3-dev",
"email": "[email protected]"
},
"repository": {
"type": "git",
"url": "git+https://github.com/r3-dev/n8n-nodes-twitch.git"
},
"main": "index.js",
"scripts": {
"dev": "npm run watch",
"build": "tsc && gulp build:icons",
"lint": "eslint -p tsconfig.json -c eslint.json",
"lintfix": "eslint --fix -p tsconfig.json -c eslint.json",
"nodelinter": "nodelinter",
"watch": "tsc --watch",
"test": "jest"
},
"files": [
"dist"
],
"n8n": {
"credentials": [
"dist/credentials/TwitchApi.credentials.js"
],
"nodes": [
"dist/nodes/Twitch/TwitchTrigger.node.js"
]
},
"devDependencies": {
"@types/express": "^4.17.21",
"@types/jest": "^29.5.10",
"@types/node": "^20.9.4",
"@types/request-promise-native": "~1.0.21",
"eslint": "^8.54.0",
"eslint-plugin-n8n-nodes-base": "^1.16.1",
"gulp": "^4.0.0",
"jest": "^29.7.0",
"n8n-core": "^1.14.1",
"n8n-workflow": "^1.14.1",
"ts-jest": "^29.1.1",
"typescript": "~5.3.2"
},
"jest": {
"transform": {
"^.+\\.tsx?$": "ts-jest"
},
"testURL": "http://localhost/",
"testRegex": "(/__tests__/.*|(\\.|/)(test|spec))\\.(jsx?|tsx?)$",
"testPathIgnorePatterns": [
"/dist/",
"/node_modules/"
],
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"json"
]
}
}