rebuild/package.json

64 строки
1.6 KiB
JSON
Исходник Обычный вид История

2015-05-04 10:01:56 +03:00
{
"name": "electron-rebuild",
2018-07-31 06:19:30 +03:00
"version": "1.8.2",
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",
"watch": "tsc -w",
2015-05-04 11:53:40 +03:00
"prepublish": "npm run compile",
2017-03-29 02:44:30 +03:00
"test": "mocha --compilers ts:ts-node/register ./test/*.ts",
2017-03-29 01:36:29 +03:00
"lint": "tslint \"src/**/*.ts\" \"test/**/*.ts\""
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": {
2018-03-20 16:07:32 +03:00
"colors": "^1.2.0",
2017-03-29 02:23:50 +03:00
"debug": "^2.6.3",
"detect-libc": "^1.0.3",
2017-06-08 21:59:36 +03:00
"fs-extra": "^3.0.1",
"node-abi": "^2.0.0",
2017-03-29 02:23:50 +03:00
"node-gyp": "^3.6.0",
"ora": "^1.2.0",
"rimraf": "^2.6.1",
2017-03-29 01:36:29 +03:00
"spawn-rx": "^2.0.10",
2017-03-29 02:23:50 +03:00
"yargs": "^7.0.2"
2015-05-04 12:14:31 +03:00
},
"devDependencies": {
2017-03-29 01:36:29 +03:00
"@types/chai": "^3.4.35",
"@types/chai-as-promised": "0.0.30",
"@types/debug": "0.0.29",
2017-06-08 21:59:36 +03:00
"@types/fs-extra": "^3.0.3",
2017-03-29 01:36:29 +03:00
"@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",
2017-03-29 02:23:50 +03:00
"chai": "^3.5.0",
2016-12-20 12:21:31 +03:00
"chai-as-promised": "^6.0.0",
"electron": "^1.4.13",
2017-03-29 01:36:29 +03:00
"mocha": "^3.2.0",
"ts-node": "^3.0.2",
"tslint": "^4.5.1",
"typescript": "^2.2.2"
2015-05-04 10:01:56 +03:00
}
}