2015-05-04 10:01:56 +03:00
|
|
|
{
|
|
|
|
"name": "electron-rebuild",
|
2019-02-07 01:39:04 +03:00
|
|
|
"version": "1.8.4",
|
2015-05-04 10:01:56 +03:00
|
|
|
"description": "Electron supporting package to rebuild native node modules against the currently installed electron",
|
2017-03-29 01:36:29 +03:00
|
|
|
"main": "lib/src/main.js",
|
2017-04-04 21:41:27 +03:00
|
|
|
"typings": "lib/src/main.d.ts",
|
2015-05-04 10:01:56 +03:00
|
|
|
"scripts": {
|
2017-03-29 01:36:29 +03:00
|
|
|
"compile": "tsc",
|
2017-06-14 10:38:53 +03:00
|
|
|
"watch": "tsc -w",
|
2019-02-06 04:06:36 +03:00
|
|
|
"prepare": "npm run compile",
|
2019-02-05 22:18:10 +03:00
|
|
|
"mocha": "cross-env TS_NODE_FILES=true mocha --require ts-node/register ./test/*.ts",
|
|
|
|
"lint": "tslint --project tsconfig.json --exclude \"test/**/node_modules/**/*.ts\" \"src/**/*.ts\" \"test/**/*.ts\"",
|
|
|
|
"test": "npm run lint && npm run mocha"
|
2015-05-04 10:01:56 +03:00
|
|
|
},
|
2015-05-04 11:33:17 +03:00
|
|
|
"bin": {
|
2017-05-09 11:42:05 +03:00
|
|
|
"electron-rebuild": "lib/src/cli.js"
|
2015-05-04 11:33:17 +03:00
|
|
|
},
|
2015-05-04 10:01:56 +03:00
|
|
|
"repository": {
|
|
|
|
"type": "git",
|
2016-08-12 23:06:31 +03:00
|
|
|
"url": "https://github.com/electron/electron-rebuild"
|
2015-05-04 10:01:56 +03:00
|
|
|
},
|
|
|
|
"keywords": [
|
|
|
|
"electron"
|
|
|
|
],
|
|
|
|
"author": "Paul Betts <paul@paulbetts.org>",
|
|
|
|
"license": "MIT",
|
|
|
|
"bugs": {
|
2016-08-12 23:06:31 +03:00
|
|
|
"url": "https://github.com/electron/electron-rebuild/issues"
|
2015-05-04 10:01:56 +03:00
|
|
|
},
|
2016-08-12 23:06:31 +03:00
|
|
|
"homepage": "https://github.com/electron/electron-rebuild",
|
2017-01-11 04:08:51 +03:00
|
|
|
"engines": {
|
|
|
|
"node": ">=6.0.0"
|
|
|
|
},
|
2015-05-04 10:01:56 +03:00
|
|
|
"dependencies": {
|
2019-02-05 22:18:10 +03:00
|
|
|
"colors": "^1.3.3",
|
|
|
|
"debug": "^4.1.1",
|
2017-12-31 23:58:38 +03:00
|
|
|
"detect-libc": "^1.0.3",
|
2019-02-05 22:18:10 +03:00
|
|
|
"fs-extra": "^7.0.1",
|
|
|
|
"node-abi": "^2.7.0",
|
|
|
|
"node-gyp": "^3.8.0",
|
|
|
|
"ora": "^3.0.0",
|
|
|
|
"spawn-rx": "^3.0.0",
|
|
|
|
"yargs": "^12.0.5"
|
2015-05-04 12:14:31 +03:00
|
|
|
},
|
|
|
|
"devDependencies": {
|
2019-02-05 22:18:10 +03:00
|
|
|
"@types/chai": "^4.1.7",
|
|
|
|
"@types/chai-as-promised": "7.1.0",
|
|
|
|
"@types/debug": "0.0.31",
|
|
|
|
"@types/fs-extra": "^5.0.4",
|
|
|
|
"@types/mocha": "^5.2.5",
|
|
|
|
"@types/node": "^10.12.21",
|
|
|
|
"@types/ora": "^3.0.0",
|
|
|
|
"@types/yargs": "^12.0.8",
|
|
|
|
"chai": "^4.2.0",
|
|
|
|
"chai-as-promised": "^7.1.1",
|
|
|
|
"cross-env": "^5.2.0",
|
|
|
|
"electron": "^2.0.17",
|
|
|
|
"mocha": "^5.2.0",
|
|
|
|
"ts-node": "^8.0.2",
|
|
|
|
"tslint": "^5.12.1",
|
|
|
|
"typescript": "^3.3.1"
|
2015-05-04 10:01:56 +03:00
|
|
|
}
|
|
|
|
}
|