-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
55 lines (55 loc) · 1011 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
52
53
54
55
{
"name": "node-red-contrib-speed-test",
"version": "0.1.1",
"description": "Test your download speed using speed test",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/spooky/node-red-contrib-speed-test.git"
},
"author": {
"name": "Luke Davis",
"email": "[email protected]",
"url": "lucky13.technologies"
},
"main": "speed.js",
"engines": {
"node": ">=4"
},
"scripts": {
"start": "node --harmony speed.js"
},
"node-red": {
"nodes": {
"speed-test": "speed.js"
}
},
"files": [
"speed.js"
],
"keywords": [
"node-red",
"speed",
"test",
"tester",
"down",
"download",
"speed-test",
"speedtest",
"connection",
"internet",
"bandwidth",
"measure",
"check",
"mbps"
],
"dependencies": {
"speedtest-net": "^1.2.12"
},
"devDependencies": {
"mocha": "^3.2.0",
"chai": "^3.5.0",
"sinon": "^1.17.6",
"proxyquire": "^1.7.10"
}
}