forked from microsoft/node-pty
-
Notifications
You must be signed in to change notification settings - Fork 15
/
package.json
68 lines (68 loc) · 1.81 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
66
67
68
{
"name": "@homebridge/node-pty-prebuilt-multiarch",
"description": "Fork pseudoterminals in Node.JS",
"author": {
"name": "Microsoft Corporation"
},
"version": "0.11.14",
"license": "MIT",
"main": "./lib/index.js",
"types": "./typings/node-pty.d.ts",
"repository": {
"type": "git",
"url": "git://github.com/homebridge/node-pty-prebuilt-multiarch.git"
},
"files": [
"binding.gyp",
"lib/",
"scripts/",
"src/",
"deps/",
"typings/",
"prebuilds/linux-x64",
"prebuilds/linux-ia32",
"prebuilds/linux-arm",
"prebuilds/linux-arm64"
],
"homepage": "https://github.com/homebridge/node-pty-prebuilt-multiarch",
"bugs": {
"url": "https://github.com/homebridge/node-pty-prebuilt-multiarch/issues"
},
"keywords": [
"pty",
"tty",
"terminal",
"pseudoterminal",
"forkpty",
"openpty"
],
"scripts": {
"build": "tsc -b ./src/tsconfig.json",
"watch": "tsc -b -w ./src/tsconfig.json",
"lint": "eslint -c .eslintrc.js --ext .ts src/",
"install": "node scripts/check-prebuild.js || prebuild-install --verbose || node scripts/install.js",
"postinstall": "node scripts/post-install.js",
"test": "cross-env NODE_ENV=test mocha -R spec --exit lib/*.test.js",
"posttest": "npm run lint",
"prepare": "npm run build",
"prepublishOnly": "npm run build"
},
"dependencies": {
"nan": "^2.19.0",
"prebuild-install": "^7.1.2"
},
"devDependencies": {
"@types/mocha": "^10.0.6",
"@types/node": "^20.12.12",
"@typescript-eslint/eslint-plugin": "^7.10.0",
"@typescript-eslint/parser": "^7.10.0",
"cross-env": "^7.0.3",
"mocha": "^10.4.0",
"node-abi": "^3.62.0",
"node-gyp": "^10.1.0",
"prebuild": "^13.0.1",
"prebuildify": "^5.0.1",
"ps-list": "=7.2.0",
"typescript": "^5.4.5"
}
}