-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
51 lines (51 loc) · 993 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
51
{
"name": "node-red-node-test-helper",
"version": "0.1.6",
"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": {
"express": "4.16.2",
"should": "^8.4.0",
"sinon": "1.17.7",
"supertest": "3.0.0",
"stoppable": "boneskull/stoppable#boneskull-patch-1",
"when": "3.7.8"
},
"peerDependencies": {
"node-red": "0.18.x"
},
"devDependencies": {
"mocha": "~5.0.4"
},
"contributors": [
{
"name": "Nick O'Leary"
},
{
"name": "Dave Conway-Jones"
},
{
"name": "Mike Blackstock"
},
{
"name": "Dean Cording"
}
],
"keywords": [
"test",
"iot",
"node"
],
"engines": {
"node": ">=4"
}
}