2015-05-04 10:01:56 +03:00
|
|
|
{
|
|
|
|
"name": "electron-rebuild",
|
2017-01-04 00:09:04 +03:00
|
|
|
"version": "1.5.5",
|
2015-05-04 10:01:56 +03:00
|
|
|
"description": "Electron supporting package to rebuild native node modules against the currently installed electron",
|
2017-01-03 10:22:12 +03:00
|
|
|
"main": "lib/main.js",
|
2015-05-04 10:01:56 +03:00
|
|
|
"scripts": {
|
2016-12-20 12:21:31 +03:00
|
|
|
"compile": "babel -d lib/ src/ && babel -d test-dist/ test/",
|
2015-05-04 11:53:40 +03:00
|
|
|
"prepublish": "npm run compile",
|
2016-08-05 01:07:20 +03:00
|
|
|
"test": "npm run compile && mocha test-dist/* --timeout 120000"
|
2015-05-04 10:01:56 +03:00
|
|
|
},
|
2015-05-04 11:33:17 +03:00
|
|
|
"bin": {
|
|
|
|
"electron-rebuild": "lib/cli.js"
|
|
|
|
},
|
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",
|
2015-05-04 10:01:56 +03:00
|
|
|
"dependencies": {
|
2016-12-20 12:21:31 +03:00
|
|
|
"babel-register": "^6.16.3",
|
2016-12-31 09:35:53 +03:00
|
|
|
"babel-runtime": "6.18.0",
|
2016-12-20 12:21:31 +03:00
|
|
|
"colors": "^1.1.2",
|
|
|
|
"debug": "^2.4.5",
|
|
|
|
"fs-promise": "^1.0.0",
|
2017-01-01 10:48:41 +03:00
|
|
|
"node-abi": "^1.0.3",
|
2016-12-20 12:21:31 +03:00
|
|
|
"node-gyp": "^3.4.0",
|
|
|
|
"ora": "^0.3.0",
|
2016-01-10 04:20:51 +03:00
|
|
|
"rimraf": "^2.5.0",
|
2016-12-31 09:35:53 +03:00
|
|
|
"spawn-rx": "^2.0.7",
|
2016-01-10 04:20:51 +03:00
|
|
|
"yargs": "^3.31.0"
|
2015-05-04 12:14:31 +03:00
|
|
|
},
|
|
|
|
"devDependencies": {
|
2016-12-20 12:21:31 +03:00
|
|
|
"babel-cli": "^6.5.2",
|
|
|
|
"babel-plugin-syntax-async-functions": "^6.13.0",
|
|
|
|
"babel-plugin-transform-async-to-module-method": "^6.16.0",
|
|
|
|
"babel-plugin-transform-runtime": "^6.15.0",
|
|
|
|
"babel-preset-es2015": "^6.16.0",
|
|
|
|
"bluebird": "^3.4.6",
|
2016-01-10 04:20:51 +03:00
|
|
|
"chai": "^3.4.1",
|
2016-12-20 12:21:31 +03:00
|
|
|
"chai-as-promised": "^6.0.0",
|
|
|
|
"electron-prebuilt": "^1.4.12",
|
|
|
|
"mocha": "^3.2.0"
|
|
|
|
},
|
|
|
|
"babel": {
|
|
|
|
"presets": [
|
|
|
|
"es2015"
|
|
|
|
],
|
|
|
|
"plugins": [
|
|
|
|
"transform-runtime",
|
|
|
|
"syntax-async-functions",
|
|
|
|
[
|
|
|
|
"transform-async-to-module-method",
|
|
|
|
{
|
|
|
|
"module": "bluebird",
|
|
|
|
"method": "coroutine"
|
|
|
|
}
|
|
|
|
]
|
|
|
|
]
|
2015-05-04 10:01:56 +03:00
|
|
|
}
|
|
|
|
}
|