65 строки
1.7 KiB
JSON
65 строки
1.7 KiB
JSON
{
|
|
"name": "electron-rebuild",
|
|
"version": "1.7.2",
|
|
"description": "Electron supporting package to rebuild native node modules against the currently installed electron",
|
|
"main": "lib/src/main.js",
|
|
"typings": "lib/src/main.d.ts",
|
|
"scripts": {
|
|
"compile": "tsc",
|
|
"watch": "tsc -w",
|
|
"prepublish": "npm run compile",
|
|
"test": "mocha --compilers ts:ts-node/register ./test/*.ts",
|
|
"lint": "tslint \"src/**/*.ts\" \"test/**/*.ts\""
|
|
},
|
|
"bin": {
|
|
"electron-rebuild": "lib/src/cli.js"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/electron/electron-rebuild"
|
|
},
|
|
"keywords": [
|
|
"electron"
|
|
],
|
|
"author": "Paul Betts <paul@paulbetts.org>",
|
|
"license": "MIT",
|
|
"bugs": {
|
|
"url": "https://github.com/electron/electron-rebuild/issues"
|
|
},
|
|
"homepage": "https://github.com/electron/electron-rebuild",
|
|
"engines": {
|
|
"node": ">=6.0.0"
|
|
},
|
|
"dependencies": {
|
|
"colors": "^1.1.2",
|
|
"debug": "^2.6.3",
|
|
"detect-libc": "^1.0.3",
|
|
"fs-extra": "^3.0.1",
|
|
"node-abi": "^2.0.0",
|
|
"node-gyp": "^3.6.0",
|
|
"ora": "^1.2.0",
|
|
"rimraf": "^2.6.1",
|
|
"spawn-rx": "^2.0.10",
|
|
"yargs": "^7.0.2"
|
|
},
|
|
"devDependencies": {
|
|
"@types/chai": "^3.4.35",
|
|
"@types/chai-as-promised": "0.0.30",
|
|
"@types/colors": "^1.1.1",
|
|
"@types/debug": "0.0.29",
|
|
"@types/fs-extra": "^3.0.3",
|
|
"@types/mocha": "^2.2.40",
|
|
"@types/node": "^7.0.12",
|
|
"@types/ora": "^0.3.31",
|
|
"@types/rimraf": "0.0.28",
|
|
"@types/yargs": "^6.6.0",
|
|
"chai": "^3.5.0",
|
|
"chai-as-promised": "^6.0.0",
|
|
"electron": "^1.4.13",
|
|
"mocha": "^3.2.0",
|
|
"ts-node": "^3.0.2",
|
|
"tslint": "^4.5.1",
|
|
"typescript": "^2.2.2"
|
|
}
|
|
}
|