blob: e202b32bb24ef376dc60eebdf9aa78865958d9cf [file] [log] [blame]
{
"name": "cordova-electron",
"version": "4.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",
"keywords": [
"apache",
"cordova",
"cordova:platform",
"ecosystem:cordova",
"electron"
],
"scripts": {
"lint": "eslint .",
"prepare": "cordova-js build > bin/templates/platform_www/cordova.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.2",
"electron": "^18.2.4",
"electron-builder": "^23.0.3",
"electron-devtools-installer": "^3.2.0",
"execa": "^5.1.1",
"fs-extra": "^10.1.0"
},
"devDependencies": {
"@cordova/eslint-config": "^4.0.0",
"cordova-js": "^6.1.0",
"jasmine": "^4.1.0",
"nyc": "^15.1.0",
"rewire": "^6.0.0"
},
"author": "Apache Software Foundation",
"license": "Apache-2.0",
"engines": {
"node": ">=14.14.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/",
"coverage/",
"tests/"
],
"reporter": [
"lcov",
"text"
]
}
}