-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
35 lines (35 loc) · 1.03 KB
/
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": "remotefs",
"version": "2.0.0",
"description": "BigBoat Storage Agent",
"main": "index.js",
"scripts": {
"mermaid": "for i in ./docs/*.mmd; do mmdc -i $i -o $i.png -t neutral; done",
"start": "node index.js",
"dev": "nodemon --inspect=0.0.0.0:9228 index.js",
"test": "istanbul cover tests; mocha --recursive tests && istanbul report text lcov",
"test:html": "istanbul cover tests; mocha --recursive tests && istanbul report html lcov",
"test:watch": "mocha --watch-extensions test.js --watch tests ",
"precommit": "npm test",
"prepush": "npm test"
},
"author": "ICTU",
"license": "ISC",
"dependencies": {
"@bigboat/mqtt-client": "^1.1.0",
"async": "^2.5.0",
"diskusage": "^0.2.4",
"eventemitter2": "^4.1.2",
"get-folder-size": "^1.0.0",
"lodash": "^4.17.4",
"mqtt": "^2.12.0",
"shelljs": "^0.7.8"
},
"devDependencies": {
"mermaid.cli": "^0.4.6",
"istanbul": "^0.4.5",
"mocha": "^3.5.3",
"nodemon": "^1.17.5",
"testdouble": "^3.2.5"
}
}