This repository has been archived by the owner on Jun 5, 2022. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
76 lines (76 loc) · 1.66 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
{
"name": "@davidwinter/electron-forge-maker-snap",
"main": "index.js",
"version": "2.0.7",
"license": "MIT",
"author": {
"name": "David Winter",
"email": "i@djw.me",
"url": "https://davidwinter.dev"
},
"funding": "https://github.com/davidwinter/electron-forge-maker-snap?sponsor=1",
"bugs": {
"url": "https://github.com/davidwinter/electron-forge-maker-snap/issues"
},
"homepage": "https://github.com/davidwinter/electron-forge-maker-snap#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/davidwinter/electron-forge-maker-snap.git"
},
"publishConfig": {
"access": "public"
},
"keywords": [
"electron",
"electron-forge",
"utility",
"utilities",
"linux",
"snap"
],
"files": [
"index.js",
"snap-packager.js",
"snap-values.js",
"snapcraft.template.yaml"
],
"scripts": {
"prepare": "husky install",
"cm": "git-cz",
"lint": "xo",
"test": "xo && ava",
"fast_tests": "xo && FAST_TESTS=1 ava",
"test_with_coverage": "xo && nyc ava && nyc report --reporter=text-lcov > coverage.lcov"
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
},
"ava": {
"files": [
"./*.test.js"
],
"timeout": "10m",
"failFast": true
},
"dependencies": {
"@electron-forge/maker-base": "^6.0.0-beta.61",
"debug": "^4.3.2",
"electron-packager": "^15.4.0",
"fs-extra": "^10.0.0",
"ini": "^2.0.0",
"js-yaml": "^4.1.0"
},
"devDependencies": {
"@commitlint/cli": "^13.2.1",
"@commitlint/config-conventional": "^14.1.0",
"ava": "^3.15.0",
"commitizen": "^4.2.4",
"cz-conventional-changelog": "^3.3.0",
"husky": "^7.0.4",
"nyc": "^15.1.0",
"sinon": "^12.0.1",
"xo": "0.39.0"
}
}