-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 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
36
37
38
39
40
{
"name": "@xch/node-remote-exec",
"version": "0.0.3",
"description": "Execute shell commands on remote machine through ssh for nodejs.",
"main": "dist/remote-exec.js",
"scripts": {
"build": "npm run lint && npm run compile",
"compile": "babel src --presets babel-preset-es2015 -d dist",
"lint": "eslint src/*",
"gendoc": "jsdoc2md src/* > API.md",
"lint-test": "eslint test.js",
"test": "mocha test.js"
},
"repository": {
"type": "git",
"url": "git+https://[email protected]/Zodiase/node-remote-exec.git"
},
"keywords": [
"Node",
"Execute",
"SSH",
"Remote",
"Shell",
"Bash"
],
"author": "Xingchen Hong",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/Zodiase/node-remote-exec/issues"
},
"homepage": "https://github.com/Zodiase/node-remote-exec#readme",
"devDependencies": {
"babel-cli": "^6.14.0",
"babel-preset-es2015": "^6.14.0",
"chai": "^3.5.0",
"eslint": "^3.4.0",
"jsdoc-to-markdown": "^1.3.7",
"mocha": "^3.0.2"
}
}