forked from PhilippLgh/electron-app-manager
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
48 lines (48 loc) · 1.84 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
{
"name": "@philipplgh/electron-app-manager",
"version": "0.55.0",
"description": "",
"main": "dist/index.js",
"scripts": {
"prepare": "yarn build",
"test": "mocha --require ts-node/register test/AppPackage.test.ts",
"test:all": "mocha --require ts-node/register test/**/*.ts",
"test:manager": "mocha --require ts-node/register test/AppManager.test.ts",
"test:downloader": "mocha --require ts-node/register test/Downloader.test.ts",
"test:github": "mocha --require ts-node/register test/Github.test.ts",
"test:swarm": "mocha --require ts-node/register test/Swarm.test.ts",
"test:bintray": "mocha --require ts-node/register test/bintray.test.ts",
"test:repos": "mocha --require ts-node/register test/Repo.test.ts",
"test:cache": "mocha --require ts-node/register test/Cache.test.ts",
"test:pkg": "mocha --require ts-node/register test/AppPackage.test.ts",
"test:semver": "mocha --require ts-node/register test/Semver.test.ts",
"test:util": "mocha --require ts-node/register test/Util.test.ts",
"static-files": "copyfiles updater/electron/ui/splash.html updater/electron/ui/preload.js dist/",
"build": "yarn static-files && tsc -p ./tsconfig.json"
},
"author": "",
"license": "ISC",
"dependencies": {
"@octokit/rest": "^16.27.0",
"electron-updater": "4.1.2",
"ethpkg": "EthereumRemix/ethpkg",
"openpgp": "^4.4.5",
"semver": "^5.6.0",
"tar-stream": "^1.6.2",
"xml2js": "^0.4.19"
},
"devDependencies": {
"@types/chai": "^4.1.7",
"@types/mocha": "^5.2.5",
"@types/nock": "^9.3.0",
"@types/node": "^10.12.18",
"@types/semver": "^5.5.0",
"chai": "^4.2.0",
"copyfiles": "^2.1.1",
"electron": "^6.0.5",
"mocha": "^5.2.0",
"nock": "^10.0.6",
"ts-node": "^7.0.1",
"typescript": "^3.2.2"
}
}