68 lines
1.5 KiB
JSON
68 lines
1.5 KiB
JSON
{
|
|
"name": "electron-installer-redhat",
|
|
"description": "Create a Red Hat package for your Electron app.",
|
|
"version": "3.3.0",
|
|
"license": "MIT",
|
|
"author": {
|
|
"name": "Daniel Perez Alvarez",
|
|
"email": "unindented@gmail.com",
|
|
"url": "http://unindented.org/"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git://github.com/electron-userland/electron-installer-redhat.git"
|
|
},
|
|
"keywords": [
|
|
"electron",
|
|
"redhat"
|
|
],
|
|
"os": [
|
|
"darwin",
|
|
"linux"
|
|
],
|
|
"engines": {
|
|
"node": ">= 10.0.0"
|
|
},
|
|
"main": "src/installer.js",
|
|
"bin": {
|
|
"electron-installer-redhat": "src/cli.js"
|
|
},
|
|
"scripts": {
|
|
"lint": "eslint .",
|
|
"spec": "mocha",
|
|
"test": "npm run lint && npm run spec"
|
|
},
|
|
"dependencies": {
|
|
"@malept/cross-spawn-promise": "^1.0.0",
|
|
"debug": "^4.1.1",
|
|
"electron-installer-common": "^0.10.2",
|
|
"fs-extra": "^9.0.0",
|
|
"lodash": "^4.17.15",
|
|
"word-wrap": "^1.2.3",
|
|
"yargs": "^16.0.2"
|
|
},
|
|
"devDependencies": {
|
|
"chai": "^4.2.0",
|
|
"chai-as-promised": "^7.1.1",
|
|
"eslint": "^7.2.0",
|
|
"eslint-config-standard": "^16.0.0",
|
|
"eslint-plugin-import": "^2.20.0",
|
|
"eslint-plugin-node": "^11.0.0",
|
|
"eslint-plugin-promise": "^4.2.1",
|
|
"eslint-plugin-standard": "^5.0.0",
|
|
"husky": "^4.2.5",
|
|
"lint-staged": "^10.2.7",
|
|
"mocha": "^8.0.1",
|
|
"promise-retry": "^2.0.1",
|
|
"proxyquire": "^2.1.3",
|
|
"sinon": "^9.0.0",
|
|
"tmp-promise": "^3.0.2"
|
|
},
|
|
"husky": {
|
|
"pre-commit": "lint-staged"
|
|
},
|
|
"lint-staged": {
|
|
"*.js": "eslint --fix"
|
|
}
|
|
}
|