This repository has been archived by the owner on Nov 27, 2018. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 16
/
package.json
104 lines (104 loc) · 3.02 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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
{
"name": "brave-ledger",
"version": "0.9.9",
"description": "A BTC micropayments system for users and publishers.",
"main": "index.js",
"scripts": {
"docker-build-image": "docker build -t brave-ledger .",
"lint": "standard",
"server": "./node_modules/.bin/babel-node src/index.js",
"start": "DEBUG=*,-babel,-mongo:*,mongo:queries ./node_modules/.bin/babel-node src/index.js",
"start-worker": "DEBUG=*,-babel,-mongo:*,mongo:queries ./node_modules/.bin/babel-node --optimize_for_size --max_old_space_size=460 --gc_interval=100 src/worker.js",
"test": "npm run test-security",
"test-security": "nsp check",
"worker": "./node_modules/.bin/babel-node --optimize_for_size --max_old_space_size=460 --gc_interval=100 src/worker.js"
},
"repository": {
"type": "git",
"url": "https://github.com/brave/ledger.git"
},
"author": "Brave Developers <support@brave.com>",
"license": "MPL-2.0",
"bugs": {
"url": "https://github.com/brave/ledger/issues"
},
"homepage": "https://github.com/brave/ledger",
"dependencies": {
"babel-cli": "^6.24.1",
"babel-preset-stage-2": "^6.24.1",
"bell": "8.7.0",
"bitcoinjs-lib": "^3.1.1",
"bitgo": "^3.5.0",
"blipp": "2.3.0",
"bluebird": "3.5.0",
"boom": "5.2.0",
"bs58check": "^2.0.2",
"bson": "1.0.4",
"coinbase": "^2.0.6",
"country-list": "1.1.0",
"crumb": "6.0.3",
"cryptiles": "3.1.2",
"cron-parser": "2.4.1",
"currency-codes": "1.1.2",
"dateformat": "2.0.0",
"github": "9.2.0",
"gridfs-stream": "1.1.1",
"hapi": "^16.5.2",
"hapi-async-handler": "^1.0.3",
"hapi-auth-bearer-token": "5.1.0",
"hapi-auth-cookie": "7.0.0",
"hapi-rate-limiter": "brave/hapi-rate-limiter",
"hapi-swagger": "brave/hapi-swagger",
"inert": "^4.2.1",
"joi": "^10.6.0",
"json-stringify-safe": "^5.0.1",
"json2csv": "^3.11.0",
"ledger-balance": "^0.9.1",
"ledger-publisher": "^0.9.5",
"moment": "^2.18.1",
"mongodb": "^2.2.31",
"monk": "brave/monk",
"monotonic-timestamp": "0.0.9",
"netmask": "1.0.6",
"node-anonize2-relic": "0.1.6",
"node-cache": "4.1.1",
"newrelic": "2.1.0",
"@newrelic/native-metrics": "2.1.1",
"proxy-agent": "^2.1.0",
"node-slack": "0.0.7",
"redis": "2.8.0",
"rsmq": "^0.8.2",
"rsmq-worker": "^0.5.2",
"sdebug": "^0.9.4",
"stripe": "^4.23.2",
"throng": "4.0.0",
"tldjs": "2.0.0",
"underscore": "1.8.3",
"uuid": "3.1.0",
"validate-ip-node": "1.0.6",
"vision": "^4.1.1",
"wreck": "12.2.2"
},
"engines": {
"node": "7.10.1",
"npm": "4.2.0"
},
"devDependencies": {
"babel-eslint": "^7.2.3",
"babel-polyfill": "^6.23.0",
"code": "4.1.0",
"del": "^3.0.0",
"gulp": "^3.9.1",
"gulp-nodemon": "^2.2.1",
"gulp-shell": "^0.6.3",
"gulp-standard": "^10.0.0",
"nsp": "^2.7.0",
"rsmq-cli": "^0.2.0",
"run-sequence": "^2.1.0",
"standard": "10.0.3"
},
"standard": {
"ignore": [ "config/config.*" ],
"parser": "babel-eslint"
}
}