-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathpackage.json
71 lines (71 loc) · 2.1 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
{
"name": "testnet-faucet2",
"version": "1.0.0",
"description": "A BCH testnet faucet",
"main": "testnet-faucet.js",
"scripts": {
"start": "node testnet-faucet.js",
"test": "export FAUCET_ENV=test && npm run prep-test && nyc --reporter=text --timeout 15000 mocha --exit test/unit/",
"test:integration": "export FAUCET_ENV=test && npm run prep-test && mocha --exit --timeout=30000 test/integration/",
"lint": "standard --env mocha --fix",
"docs": "./node_modules/.bin/apidoc -i src/ -o docs",
"coverage": "nyc report --reporter=text-lcov | coveralls",
"coverage:report": "nyc --reporter=html mocha --exit",
"prep-test": "node util/users/delete-all-test-users.js"
},
"author": "Chris Troutner <[email protected]>",
"license": "MIT",
"apidoc": {
"title": "testnet-faucet",
"url": "localhost:5000"
},
"repository": "christroutner/testnet-faucet2",
"dependencies": {
"@psf/bch-js": "^4.18.1",
"apidoc": "^0.23.0",
"axios": "^0.19.2",
"bcryptjs": "^2.4.3",
"glob": "^7.0.0",
"jsonwebtoken": "^8.3.0",
"jwt-bch-lib": "^1.3.0",
"kcors": "^2.2.1",
"koa": "^2.5.0",
"koa-bodyparser": "^4.2.0",
"koa-convert": "^1.2.0",
"koa-generic-session": "^2.0.1",
"koa-logger": "^3.1.0",
"koa-mount": "^4.0.0",
"koa-passport": "^4.1.1",
"koa-router": "^9.0.1",
"koa-static": "^5.0.0",
"line-reader": "^0.4.0",
"mongoose": "^5.7.5",
"nodemailer": "^6.4.10",
"passport-local": "^1.0.0",
"winston": "^3.2.1",
"winston-daily-rotate-file": "^4.0.0"
},
"devDependencies": {
"chai": "^4.1.2",
"coveralls": "^3.0.2",
"eslint": "5.16.0",
"eslint-config-prettier": "^6.0.0",
"eslint-config-standard": "^14.1.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^3.1.0",
"eslint-plugin-standard": "^4.0.0",
"mocha": "^7.0.1",
"nyc": "^15.0.0",
"semantic-release": "^17.4.2",
"sinon": "^9.0.2",
"standard": "^14.3.1"
},
"release": {
"publish": [
{
"path": "@semantic-release/npm",
"npmPublish": false
}
]
}
}