rebuild/package.json

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

2015-05-04 10:01:56 +03:00
{
"name": "electron-rebuild",
2019-08-16 20:52:54 +03:00
"version": "1.8.6",
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",
"prepare": "npm run compile",
"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": {
"colors": "^1.3.3",
"debug": "^4.1.1",
"detect-libc": "^1.0.3",
"fs-extra": "^7.0.1",
"node-abi": "^2.11.0",
"node-gyp": "^6.0.1",
"ora": "^3.4.0",
"spawn-rx": "^3.0.0",
2019-06-13 18:35:49 +03:00
"yargs": "^13.2.4"
2015-05-04 12:14:31 +03:00
},
"devDependencies": {
"@continuous-auth/semantic-release-npm": "^1.0.3",
"@types/chai": "^4.1.7",
"@types/chai-as-promised": "7.1.0",
"@types/debug": "^4.1.4",
2019-06-13 18:35:49 +03:00
"@types/fs-extra": "^5.1.0",
"@types/mocha": "^5.2.7",
2019-06-22 19:35:18 +03:00
"@types/node": "^12.0.10",
"@types/yargs": "^13.0.0",
"chai": "^4.2.0",
"chai-as-promised": "^7.1.1",
"cross-env": "^5.2.0",
"electron": "^2.0.18",
"mocha": "^6.1.4",
"semantic-release": "^15.13.12",
2019-06-22 19:35:18 +03:00
"ts-node": "^8.3.0",
"tslint": "^5.18.0",
"typescript": "^3.5.2"
2015-05-04 10:01:56 +03:00
}
}