This repository has been archived by the owner on Jun 27, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
73 lines (73 loc) · 1.92 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
{
"name": "zmine",
"version": "0.2.5",
"description": "GUI for mining Zcash.",
"main": "index.js",
"scripts": {
"test": "npm run testsuite && npm run linter",
"testsuite": "./node_modules/.bin/mocha test/* --recursive --exit",
"coverage": "rm -rf ~/.zmine; istanbul -x miners.js cover node_modules/mocha/bin/_mocha -- -R spec --exit",
"linter": "xo",
"start": "electron .",
"package": "electron-packager .",
"pack": "electron-builder --dir",
"dist": "electron-builder"
},
"repository": {
"type": "git",
"url": "git+https://github.com/super3/zmine.git"
},
"author": "Shawn Wilkinson <[email protected]> (http://super3.org)",
"contributors": [
"Shawn Wilkinson <[email protected]> (http://super3.org)",
"Monty Anderson <[email protected]> (https://montyanderson.net)"
],
"license": "AGPL-3.0",
"bugs": {
"url": "https://github.com/super3/zmine/issues"
},
"homepage": "https://github.com/super3/zmine#readme",
"dependencies": {
"axios": "^0.18.1",
"base58check": "^2.0.0",
"bootstrap": "^4.3.1",
"dotenv": "^8.0.0",
"extract-zip": "^1.6.7",
"got": "^9.6.0",
"jquery": "^3.4.0",
"mz": "^2.7.0",
"popper.js": "^1.15.0",
"socket.io": "^2.2.0",
"socket.io-client": "^2.2.0",
"vue": "^2.6.10"
},
"devDependencies": {
"chai": "^4.2.0",
"chai-as-promised": "^7.1.1",
"coveralls": "^3.0.4",
"del": "^4.1.1",
"electron": "^4.0.8",
"electron-builder": "^20.44.4",
"electron-builder-squirrel-windows": "^20.38.3",
"electron-packager": "^14.0.0",
"istanbul": "^1.1.0-alpha.1",
"mocha": "^6.0.2",
"spectron": "^7.0.0",
"supertest": "^4.0.2",
"xo": "^0.21.1"
},
"xo": {
"rules": {
"no-await-in-loop": "off",
"curly": "off",
"capitalized-comments": "off",
"no-new": "off"
}
},
"build": {
"appId": "zmine",
"win": {
"target": "squirrel"
}
}
}