-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
73 lines (73 loc) · 2.09 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
{
"name": "@codelytv/n8n-nodes-twitch",
"version": "1.3.2",
"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/codelytv/n8n-nodes-twitch#readme",
"bugs": {
"url": "https://github.com/codelytv/n8n-nodes-twitch/issues"
},
"author": {
"name": "CodelyTV",
"email": "[email protected]"
},
"repository": {
"type": "git",
"url": "git+https://github.com/codelytv/n8n-nodes-twitch.git"
},
"main": "index.js",
"scripts": {
"dev": "npm run watch",
"build": "tsc && gulp",
"lint": "tslint -p tsconfig.json -c tslint.json",
"lintfix": "tslint --fix -p tsconfig.json -c tslint.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.6",
"@types/jest": "^26.0.13",
"@types/node": "^14.17.27",
"@types/request-promise-native": "~1.0.15",
"gulp": "^4.0.0",
"jest": "^26.4.2",
"n8n-workflow": "~0.98.0",
"nodelinter": "^0.1.9",
"ts-jest": "^26.3.0",
"tslint": "^6.1.2",
"typescript": "~4.3.5"
},
"dependencies": {
"n8n-core": "~0.116.0"
},
"jest": {
"transform": {
"^.+\\.tsx?$": "ts-jest"
},
"testURL": "http://localhost/",
"testRegex": "(/__tests__/.*|(\\.|/)(test|spec))\\.(jsx?|tsx?)$",
"testPathIgnorePatterns": [
"/dist/",
"/node_modules/"
],
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"json"
]
}
}