forked from Kanunik71/node-rdp
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
65 lines (65 loc) · 1.75 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
56
57
58
59
60
61
62
63
64
65
{
"version": "1.2.2",
"author": {
"name": "Serg K",
"email": "[email protected]"
},
"scripts": {
"version:patch": "npx standard-version -r patch --skip.commit --skip.tag",
"version:pre-patch": "npx standard-version -r patch -p --skip.commit --skip.tag",
"version:minor": "npx standard-version -r minor --skip.commit --skip.tag",
"version:pre-minor": "npx standard-version -r minor -p --skip.commit --skip.tag",
"version:major": "npx standard-version -r major --skip.commit --skip.tag",
"version:pre-major": "npx standard-version -r major -p --skip.commit --skip.tag"
},
"dependencies": {
"child_process": "^1.0.2",
"commander": "^2.6.0",
"i": "^0.3.6",
"lodash.defaults": "^3.0.0",
"npm": "^6.9.0",
"sanitize-filename": "^1.1.5"
},
"description": "Microsoft Remote Desktop Protocol wrapper for NodeJS",
"devDependencies": {
"@commitlint/cli": "^7.5.2",
"@commitlint/config-conventional": "^7.5.0",
"conventional-changelog-cli": "^2.0.12",
"cz-customizable": "^5.10.0",
"husky": "^1.3.1",
"standard-version": "^5.0.2"
},
"directories": {},
"files": [
"lib"
],
"keywords": [
"rdp",
"microsoft",
"remote desktop",
"remote desktop protocol",
"mstsc",
"terminal server"
],
"license": "Apache-2.0",
"main": "lib/rdp.js",
"name": "node-rdp",
"optionalDependencies": {},
"repository": {
"type": "git",
"url": "git+https://github.com/trueflywood/node-rdp.git"
},
"config": {
"commitizen": {
"path": "node_modules/cz-customizable"
},
"cz-customizable": {
"config": "commitizen.config.js"
}
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS -g commitlint.config.js"
}
}
}