-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
35 lines (35 loc) · 944 Bytes
/
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
{
"name": "node-red-my-nodes",
"version": "1.0.0",
"private": true,
"description": "Node-RED-my-nodes package to hold the test framework ONLY - use npm to install individual nodes",
"homepage": "https://github.com/m-schaeffler/node-red-my-nodes",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "https://github.com/m-schaeffler/node-red-my-nodes"
},
"keywords": [
"node-red",
"nodes",
"flow"
],
"devDependencies": {
"mocha": "^10.2.0",
"node-red":"^3.1.0",
"node-red-node-test-helper": "^0.3.3",
"should": "^13.2.3",
"should-sinon": "^0.0.6",
"sinon": "^11.1.2"
},
"engines": {
"node": ">=18"
},
"author": {
"name": "Mathias Schäffler",
"url": "https://github.com/m-schaeffler"
},
"scripts": {
"test": "mocha \"**/test/*_spec.js\""
}
}