-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
28 lines (28 loc) · 807 Bytes
/
package.json
File metadata and controls
28 lines (28 loc) · 807 Bytes
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
{
"name": "harbormaster-ssh",
"version": "1.0.3",
"description": "SSH into a server, and run something!",
"main": "ssh.js",
"components": ["ssh"],
"scripts": {
"lint": "eslint --max-warnings 0 \"**/*.js\"",
"lint:fix": "eslint --fix --max-warnings 0 \"**/*.js\"",
"pretest": "npm run lint",
"test": "echo \"ok\""
},
"repository": {
"type": "git",
"url": "git+https://github.com/StrictlySkyler/harbormaster-ssh.git"
},
"author": "skyler.brungardt@gmail.com",
"license": "ISC",
"bugs": {
"url": "https://github.com/StrictlySkyler/harbormaster-ssh/issues"
},
"homepage": "https://github.com/StrictlySkyler/harbormaster-ssh#readme",
"devDependencies": {
"@babel/core": "^7.23.6",
"@babel/eslint-parser": "^7.23.3",
"eslint": "^8.55.0"
}
}