-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 1.64 KB
/
package.json
File metadata and controls
62 lines (62 loc) · 1.64 KB
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
{
"name": "ayria-desktop",
"version": "0.0.0",
"description": "GUI Electron app for the Ayria Network Platform.",
"main": "src/boot-electron.js",
"scripts": {
"postinstall": "electron-rebuild",
"start": "electron .",
"test": "ava",
"test:ci": "run-p test 'lint -- --max-warnings 0'",
"lint": "eslint src/*.js src/**/**/*.js test/*.js",
"pack": "run-s pack:*",
"pack:linux": "electron-packager . --platform=linux --arch=x64",
"pack:windows": "electron-packager . --platform=win32 --arch=x64"
},
"dependencies": {
"arch": "^2.1.0",
"binary-vdf": "^0.1.0",
"concat-stream": "^1.6.0",
"env-paths": "^1.0.0",
"flat-cache": "^1.2.2",
"github-slugid": "^1.0.1",
"got": "^9.0.0",
"hyperapp": "^1.0.2",
"js-yaml": "^3.10.0",
"mkdirp": "^0.5.1",
"object.entries": "^1.0.4",
"pify": "^4.0.0",
"pouchdb": "^7.0.0",
"pouchdb-upsert": "^2.2.0",
"ramda": "^0.25.0",
"vdfjs": "^2.0.3",
"winreg": "^1.2.4",
"yauzl": "^2.8.0",
"yazl": "^2.4.2"
},
"devDependencies": {
"ava": "^0.25.0",
"electron": "~2.0.4",
"electron-packager": "^12.0.0",
"electron-rebuild": "^1.8.1",
"electron-reload": "^1.2.1",
"eslint": "^5.1.0",
"npm-run-all": "^4.0.2",
"semver-level-harmony": "^1.0.0",
"spectron": "~4.0.0"
},
"repository": {
"type": "git",
"url": "https://github.com/AyriaPublic/ayria-desktop.git"
},
"contributors": [
"Selwyn <talk@selwyn.cc> (https://selwyn.cc/)",
"Will Tange <will@brt.sexy> (https://brt.sexy)"
],
"license": "GPL-3.0",
"keywords": [
"Ayria",
"Ayria Desktop",
"Electron"
]
}