-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.47 KB
/
package.json
File metadata and controls
57 lines (57 loc) · 1.47 KB
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
{
"name": "n8n-nodes-changes",
"version": "0.2.2",
"description": "n8n node to process differences between two inputs",
"license": "MIT",
"homepage": "https://github.com/drudge/n8n-nodes-changes",
"author": {
"name": "Nicholas Penree",
"email": "nick@penree.com"
},
"repository": {
"type": "git",
"url": "git+https://github.com/drudge/n8n-nodes-changes.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"
},
"files": [
"dist"
],
"keywords": [
"n8n",
"node",
"changes",
"diff",
"compare",
"n8n-node",
"n8n-community-node-package"
],
"n8n": {
"nodes": [
"dist/nodes/Changes/Changes.node.js"
]
},
"devDependencies": {
"@types/lodash.set": "^4.3.7",
"@types/node": "^14.17.27",
"@types/request-promise-native": "^1.0.18",
"gulp": "^4.0.0",
"n8n": "^0.178.2",
"n8n-workflow": "~0.100.0",
"nodelinter": "^0.1.9",
"tslint": "^6.1.2",
"typescript": "~4.7.2"
},
"dependencies": {
"deep-diff-pizza": "^1.0.1",
"lodash.set": "^4.3.2",
"n8n-core": "~0.118.0"
}
}