-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 845 Bytes
/
package.json
File metadata and controls
37 lines (37 loc) · 845 Bytes
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
{
"name": "node-red-contrib-function-npm",
"version": "0.4.3",
"description": "A function node for Node-RED with npm load capabilities",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "https://github.com/ntsaini/node-red-contrib-function-npm"
},
"scripts": {
"test": "mocha \"test/**/*_spec.js\""
},
"dependencies": {
"npm-install-to": "^3.0.1",
"strip-comments": "^2.0.1",
"temp": "^0.9.4"
},
"keywords": [
"function-npm",
"node-red"
],
"node-red": {
"nodes": {
"function-npm": "function-npm/function-npm.js"
}
},
"author": {
"name": "Nishant Saini",
"email": "nishantsaini@outlook.com"
},
"devDependencies": {
"auto-changelog": "^2.2.1",
"mocha": "^8.2.1",
"node-red": "^1.2.7",
"node-red-node-test-helper": "^0.2.5"
}
}