forked from malept/electron-installer-flatpak
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
58 lines (58 loc) · 1.41 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
{
"name": "@malept/electron-installer-flatpak",
"description": "Create a Flatpak package for your Electron app.",
"version": "0.11.4",
"license": "MIT",
"author": {
"name": "Matt Watson",
"email": "[email protected]"
},
"repository": {
"type": "git",
"url": "https://github.com/malept/electron-installer-flatpak.git"
},
"keywords": [
"electron",
"flatpak"
],
"os": [
"darwin",
"linux"
],
"main": "src/installer.js",
"bin": {
"electron-installer-flatpak": "bin/electron-installer-flatpak.js"
},
"scripts": {
"ci": "nyc npm test",
"coverage": "nyc mocha && nyc report --reporter=text-lcov > coverage.lcov",
"clean": "rimraf test/fixtures/out",
"lint": "eslint .",
"spec": "mocha",
"test": "npm run clean && npm run lint && npm run spec"
},
"engines": {
"node": ">= 10.0.0"
},
"dependencies": {
"@malept/flatpak-bundler": "^0.4.0",
"debug": "^4.1.1",
"electron-installer-common": "^0.10.0",
"lodash": "^4.17.15",
"semver": "^7.1.1",
"yargs": "^16.0.0"
},
"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.18.0",
"eslint-plugin-node": "^11.0.0",
"eslint-plugin-promise": "^5.1.0",
"fs-extra": "^9.0.0",
"mocha": "^8.0.1",
"nyc": "^15.0.0",
"rimraf": "^3.0.0"
}
}