blob: 60833bb2042c2ef3e277cfdaacecbfe802d48d29 [file] [log] [blame]
{
"name": "cordova-electron",
"version": "2.0.0-dev",
"description": "electron apps as a target for cordova developers",
"main": "lib/Api.js",
"repository": "github:apache/cordova-electron",
"bugs": "https://github.com/apache/cordova-electron/issues",
"kewords": [
"apache",
"cordova",
"cordova:platform",
"ecosystem:cordova",
"electron"
],
"scripts": {
"lint": "eslint .",
"prepack": "node .npm-scripts/prepack.js",
"test": "npm run lint && npm run test:coverage",
"test:coverage": "nyc npm run test:unit",
"test:unit": "jasmine --config=tests/spec/unit.json"
},
"dependencies": {
"cordova-common": "^4.0.1",
"electron": "^9.0.0",
"electron-builder": "^22.7.0",
"electron-devtools-installer": "^3.1.1",
"execa": "^4.0.0",
"fs-extra": "^9.0.0"
},
"devDependencies": {
"@cordova/eslint-config": "^3.0.0",
"jasmine": "^3.5.0",
"nyc": "^15.0.1",
"rewire": "^5.0.0"
},
"author": "Apache Software Foundation",
"contributors": [
{
"name": "Steve Gill",
"email": "steveng@adobe.com"
},
{
"name": "Jesse MacFadyen",
"email": "purplecabbage@apache.org"
}
],
"license": "Apache-2.0",
"engines": {
"node": ">=10.0.0"
},
"nyc": {
"all": true,
"check-coverage": true,
"per-file": true,
"lines": 100,
"statements": 100,
"functions": 100,
"branches": 100,
"exclude": [
".npm-scripts/",
"bin/templates/build-res/",
"bin/templates/platform_www/",
"cordova-js-src/",
"cordova-lib/",
"coverage/",
"tests/"
],
"reporter": [
"lcov",
"text"
]
}
}