-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.26 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.26 KB
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
{
"name": "libssh-node",
"version": "0.1.0",
"description": "Node.js native wrapper for libssh with TypeScript support",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "yarn build:ts",
"build:native": "node-gyp rebuild",
"build:ts": "tsc",
"build:all": "yarn build:native && yarn build:ts",
"clean": "node-gyp clean && rm -rf dist",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"lint": "eslint lib/**/*.ts test/**/*.ts examples/**/*.ts",
"lint:fix": "eslint lib/**/*.ts test/**/*.ts examples/**/*.ts --fix",
"rebuild": "yarn clean && yarn build:all"
},
"keywords": [
"ssh",
"libssh",
"tunnel",
"sftp",
"native",
"node-addon"
],
"author": "Beekeeper Studio",
"license": "MIT",
"dependencies": {
"node-addon-api": "^8.0.0"
},
"devDependencies": {
"@types/jest": "^29.5.12",
"@types/node": "^20.11.19",
"@typescript-eslint/eslint-plugin": "^7.0.1",
"@typescript-eslint/parser": "^7.0.1",
"eslint": "^8.57.0",
"jest": "^29.7.0",
"node-gyp": "^10.0.1",
"ts-jest": "^29.1.2",
"ts-node": "^10.9.2",
"typescript": "^5.3.3"
},
"engines": {
"node": ">=20.0.0"
},
"gypfile": true
}