60 lines
1.4 KiB
JSON
60 lines
1.4 KiB
JSON
{
|
|
"name": "node-pty",
|
|
"description": "Fork pseudoterminals in Node.JS",
|
|
"author": {
|
|
"name": "Microsoft Corporation"
|
|
},
|
|
"version": "1.1.0-beta11",
|
|
"license": "MIT",
|
|
"main": "./lib/index.js",
|
|
"types": "./typings/node-pty.d.ts",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git://github.com/microsoft/node-pty.git"
|
|
},
|
|
"files": [
|
|
"binding.gyp",
|
|
"lib/",
|
|
"scripts/",
|
|
"src/",
|
|
"deps/",
|
|
"typings/"
|
|
],
|
|
"homepage": "https://github.com/microsoft/node-pty",
|
|
"bugs": {
|
|
"url": "https://github.com/microsoft/node-pty/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/",
|
|
"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"
|
|
},
|
|
"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",
|
|
"mocha": "10",
|
|
"node-gyp": "^9.4.0",
|
|
"ps-list": "^6.0.0",
|
|
"typescript": "^3.8.3"
|
|
}
|
|
} |