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 9
/
package.json
86 lines (86 loc) · 2.22 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
77
78
79
80
81
82
83
84
85
86
{
"name": "zfaucet",
"version": "0.3.0",
"description": "Simple Zcash(ZEC) faucet built with Node.",
"main": "server.js",
"engines": {
"node": ">=8.11.2"
},
"scripts": {
"test": "npm run testsuite && npm run linter",
"testsuite": "./node_modules/.bin/mocha test/* --recursive --exit",
"coverage": "istanbul cover node_modules/mocha/bin/_mocha -- -R spec --exit",
"linter": "xo",
"start": "node server.js",
"prepare": "browserify -t vueify -e src/index.js | babel-minify --mangle false > public/js/bundle.js",
"dev": "watchify -t vueify -e src/index.js -o public/js/bundle.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/super3/zfaucet.git"
},
"author": "Shawn Wilkinson",
"license": "AGPL-3.0",
"bugs": {
"url": "https://github.com/super3/zfaucet/issues"
},
"homepage": "https://github.com/super3/zfaucet#readme",
"dependencies": {
"apicache": "^1.2.3",
"axios": "^0.19.0",
"base58check": "^2.0.0",
"bignumber.js": "^8.1.1",
"bitcoinjs-lib": "^5.0.4",
"bn.js": "^4.11.8",
"body-parser": "^1.18.3",
"debug": "^4.1.1",
"decamelize": "^3.2.0",
"dog-names": "^1.0.2",
"dotenv": "^6.2.0",
"ejs": "^2.6.1",
"express": "^4.17.1",
"hoek": "^6.1.2",
"koa": "^2.7.0",
"koa-bodyparser": "^4.2.1",
"koa-json": "^2.0.2",
"koa-router": "^7.4.0",
"koa-static": "^5.0.0",
"request-promise": "^4.2.4",
"rethinkdb": "^2.3.3",
"socket.io": "^2.2.0",
"stdrpc": "^1.0.0",
"vue": "^2.6.10"
},
"devDependencies": {
"babel-minify": "^0.5.0",
"browserify": "^16.2.3",
"chai": "^4.2.0",
"chai-as-promised": "^7.1.1",
"coveralls": "^3.0.2",
"ioredis": "^4.10.0",
"istanbul": "^1.1.0-alpha.1",
"mocha": "^6.1.4",
"nodemon": "^1.18.9",
"sinon": "^7.2.4",
"socket.io-client": "^2.2.0",
"supertest": "^4.0.2",
"vueify": "^9.4.1",
"watchify": "^3.11.1",
"xo": "^0.24.0"
},
"xo": {
"globals": [
"window",
"describe",
"it",
"before"
],
"rules": {
"no-await-in-loop": "off",
"curly": "off",
"capitalized-comments": "off",
"no-new": "off",
"prefer-rest-params": "off"
}
}
}