-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
55 lines (55 loc) · 1.17 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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
{
"name": "synologyjs",
"version": "0.0.2",
"description": "Synology md info and check action via node-ssh module",
"main": "synology.js",
"scripts": {
"build": "tsc",
"mocha": "node_modules/mocha/bin/mocha",
"nyc": "node_modules/nyc/bin/nyc.js",
"test": "nyc mocha ./test/*.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mharj/synologyjs.git"
},
"keywords": [
"synology"
],
"author": "mharj",
"license": "LGPL-2.1",
"bugs": {
"url": "https://github.com/mharj/synologyjs/issues"
},
"homepage": "https://github.com/mharj/synologyjs#readme",
"nyc": {
"extension": [
".ts"
],
"include": [
"src"
],
"reporter": [
"text",
"html"
],
"all": true
},
"dependencies": {
"ssh2": "^0.8.2"
},
"devDependencies": {
"@types/chai": "^4.1.7",
"@types/mocha": "^5.2.6",
"@types/node": "^11.11.6",
"@types/ssh2": "^0.5.38",
"chai": "^4.2.0",
"mocha": "^6.0.2",
"nyc": "^13.3.0",
"source-map-support": "^0.5.11",
"ts-node": "^8.0.3",
"tslint": "^5.14.0",
"tslint-config-prettier": "^1.18.0",
"typescript": "^3.3.4000"
}
}