-
Notifications
You must be signed in to change notification settings - Fork 42
/
package.json
50 lines (50 loc) · 980 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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
{
"name": "node-red-node-test-helper",
"version": "0.3.4",
"description": "A test framework for Node-RED nodes",
"main": "index.js",
"scripts": {
"test": "mocha \"test/**/*_spec.js\"",
"examples": "mocha \"examples/**/*_spec.js\""
},
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "https://github.com/node-red/node-red-node-test-helper.git"
},
"dependencies": {
"body-parser": "^1.20.3",
"express": "^4.21.0",
"semver": "^7.5.4",
"should": "^13.2.3",
"should-sinon": "^0.0.6",
"sinon": "^11.1.2",
"stoppable": "^1.1.0",
"supertest": "^7.0.0"
},
"devDependencies": {
"mocha": "^9.2.2"
},
"contributors": [
{
"name": "Nick O'Leary"
},
{
"name": "Dave Conway-Jones"
},
{
"name": "Mike Blackstock"
},
{
"name": "Dean Cording"
}
],
"keywords": [
"test",
"iot",
"node-red"
],
"engines": {
"node": ">=14"
}
}