forked from microsoft/node-pty
-
Notifications
You must be signed in to change notification settings - Fork 15
/
package.json
70 lines (70 loc) · 1.86 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
69
70
{
"name": "@homebridge/node-pty-prebuilt-multiarch",
"description": "Fork pseudoterminals in Node.JS",
"author": {
"name": "Microsoft Corporation"
},
"version": "0.12.0",
"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",
"third_party/conpty"
],
"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": {
"node-addon-api": "^7.1.0",
"prebuild-install": "^7.1.2"
},
"devDependencies": {
"@types/mocha": "^7.0.2",
"@types/node": "12",
"@typescript-eslint/eslint-plugin": "^2.27.0",
"@typescript-eslint/parser": "^2.27.0",
"cross-env": "^5.1.4",
"eslint": "^6.8.0",
"node-abi": "^3.71.0",
"mocha": "10",
"node-gyp": "=10.1.0",
"prebuild": "^13.0.1",
"prebuildify": "^5.0.1",
"ps-list": "^6.0.0",
"typescript": "^3.8.3"
}
}