-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
74 lines (74 loc) · 1.61 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
{
"name": "@digital-boss/n8n-nodes-eventbrite",
"version": "1.0.0",
"author": "Iñaki Breinbauer",
"license": "GPL-3.0",
"description": "Eventbrite support for n8n",
"keywords": [
"n8n",
"nodemation",
"dnc",
"digital north consulting",
"nodes",
"custom",
"eventbrite",
"workflow",
"crm"
],
"repository": {
"type": "git",
"url": "git+https://github.com/quansenB/n8n-nodes-dnc-eventbrite.git"
},
"main": "index.js",
"scripts": {
"dev": "npm run watch",
"build": "tsc && gulp",
"tslint": "tslint -p tsconfig.json -c tslint.json",
"watch": "tsc --watch",
"test": "jest",
"release": "npm run build && npm publish"
},
"files": [
"dist"
],
"n8n": {
"nodes": [
"dist/nodes/Eventbrite/Eventbrite.node.js"
]
},
"devDependencies": {
"@types/jest": "^27.0.1",
"@types/node": "^16.7.2",
"@types/express": "^4.17.13",
"@types/request": "^2.48.7",
"@types/request-promise-native": "^1.0.18",
"gulp": "^4.0.2",
"jest": "^27.1.0",
"n8n-workflow": "^0.65.0",
"ts-jest": "^27.0.5",
"tslint": "^6.1.3",
"typescript": "~4.4.2"
},
"dependencies": {
"@types/request": "^2.48.7",
"@types/request-promise-native": "^1.0.18",
"n8n-core": "^0.80.0"
},
"jest": {
"transform": {
"^.+\\.tsx?$": "ts-jest"
},
"testURL": "http://localhost/",
"testRegex": "(/__tests__/.*|(\\.|/)(test|spec))\\.(jsx?|tsx?)$",
"testPathIgnorePatterns": [
"/dist/",
"/node_modules/"
],
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"json"
]
}
}