-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
90 lines (90 loc) · 2.08 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
81
82
83
84
85
86
87
88
89
90
{
"name": "n8n-nodes-influxdb",
"version": "0.1.0",
"private": false,
"description": "InfluxDB 2.x node for n8n.",
"license": "MIT",
"homepage": "https://github.com/naskio/n8n-nodes-influxdb",
"author": {
"name": "Mehdi Nassim KHODJA",
"email": "contact@nask.io",
"url": "https://nask.io"
},
"repository": {
"type": "git",
"url": "git+https://github.com/naskio/n8n-nodes-influxdb.git"
},
"keywords": [
"n8n",
"nodemation",
"nodes",
"integration",
"development",
"Data & Storage",
"InfluxDB",
"2.x",
"InfluxDB 2.x"
],
"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 --target nodes",
"watch": "tsc --watch",
"test": "jest",
"coverage": "jest --coverage",
"update": "npm-check-updates -u",
"demo:build": "./demo/run_demo.sh false",
"demo": "./demo/run_demo.sh"
},
"files": [
"dist"
],
"n8n": {
"credentials": [
"dist/credentials/InfluxDb.credentials.js"
],
"nodes": [
"dist/nodes/InfluxDb/InfluxDb.node.js"
]
},
"devDependencies": {
"@types/express": "^4.17.13",
"@types/jest": "^27.4.1",
"@types/node": "^17.0.21",
"@types/request-promise-native": "~1.0.18",
"gulp": "^4.0.2",
"jest": "^27.5.1",
"n8n-workflow": "~0.88.0",
"nodelinter": "^0.1.19",
"npm-check-updates": "^12.5.0",
"ts-jest": "^27.1.3",
"tslint": "^6.1.2",
"typescript": "~4.5.5"
},
"dependencies": {
"@influxdata/influxdb-client": "^1.23.0",
"n8n-core": "~0.106.0"
},
"jest": {
"transform": {
"^.+\\.tsx?$": "ts-jest"
},
"testURL": "http://localhost/",
"testRegex": "(/__tests__/.*|(\\.|/)(test|spec))\\.(jsx?|tsx?)$",
"testPathIgnorePatterns": [
"/dist/",
"/node_modules/"
],
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"json"
],
"setupFiles": [
"<rootDir>/__tests__/setupEnvironment.ts"
]
}
}