chrome-debugging-client
Version:
An async/await friendly Chrome debugging client with TypeScript support
45 lines (44 loc) • 1.07 kB
JSON
{
"name": "chrome-debugging-client",
"version": "0.2.5",
"description": "An async/await friendly Chrome debugging client with TypeScript support",
"keywords": [
"chrome",
"debugging",
"protocol",
"typescript"
],
"main": "dist/index.js",
"files": [
"dist/index.d.ts",
"dist/index.js",
"dist/index.js.map",
"dist/lib"
],
"types": "dist/index.d.ts",
"scripts": {
"prepublish": "npm run rebuild",
"rebuild": "rm -rf dist && tsc",
"compile": "tsc --watch",
"lint": "tslint test.ts index.ts test/**/*.ts lib/**/*.ts",
"test": "tsc && node dist/test.js | faucet"
},
"author": "Kris Selden <kris.selden@gmail.com>",
"license": "Apache-2.0",
"dependencies": {
"@types/node": "^7.0.5",
"@types/rimraf": "^0.0.28",
"@types/tape": "^4.2.29",
"@types/ws": "^0.0.38",
"mktemp": "^0.4.0",
"rimraf": "^2.5.1",
"ws": "^1.0.1"
},
"devDependencies": {
"faucet": "0.0.1",
"tape": "^4.4.0",
"tslint": "^3.3.0",
"typescript": "2"
},
"engine": "node >= 4.0.0"
}