-
Notifications
You must be signed in to change notification settings - Fork 20
/
Copy pathpackage.json
41 lines (41 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
41
{
"name": "ssh-config",
"description": "SSH config parser and stringifier",
"version": "5.0.2",
"author": "Chen Yangjian (https://www.cyj.me)",
"repository": {
"type": "git",
"url": "[email protected]:cyjake/ssh-config.git"
},
"files": [
"index.js",
"index.d.ts",
"src/*.js",
"src/*.d.ts"
],
"devDependencies": {
"@types/mocha": "^9.1.0",
"@types/node": "^17.0.45",
"@types/sinon": "^17.0.3",
"@typescript-eslint/eslint-plugin": "^5.48.0",
"@typescript-eslint/parser": "^5.48.0",
"eslint": "^8.31.0",
"heredoc": "^1.3.1",
"mocha": "^8.2.1",
"nyc": "^15.1.0",
"sinon": "^17.0.1",
"typescript": "^5.4.4"
},
"scripts": {
"lint": "eslint --ext ts .",
"lint:fix": "eslint --ext ts --fix .",
"prepack": "tsc",
"pretest": "tsc",
"test": "NODE_OPTIONS=--enable-source-maps mocha --exit --recursive",
"test:coverage": "nyc mocha --exit --recursive && nyc report --reporter=lcov"
},
"engine": {
"node": ">= 14.0.0"
},
"license": "MIT"
}