UNPKG

2.61 kBJSONView Raw
1{
2 "name": "bat-client",
3 "version": "3.3.2",
4 "description": "An example of client code for the BAT.",
5 "main": "index.js",
6 "scripts": {
7 "blastoff": "DEBUG=*,-babel ./blastoff.js -d -l -v -s http://127.0.0.1:3001 -b http://127.0.0.1:3003 -P",
8 "touchdown": "DEBUG=*,-babel ./blastoff.js -d -l -v -s http://127.0.0.1:3001 -b http://127.0.0.1:3003 -f ./config.json",
9 "blastoff-staging": "DEBUG=*,-babel ./blastoff.js -d -l -v -s https://ledger-staging.mercury.basicattentiontoken.org -b https://balance-staging.mercury.basicattentiontoken.org -P",
10 "touchdown-staging": "DEBUG=*,-babel ./blastoff.js -d -l -v -s https://ledger-staging.mercury.basicattentiontoken.org -b https://balance-staging.mercury.basicattentiontoken.org -f ./config.json",
11 "blastoff-mercury": "DEBUG=*,-babel ./blastoff.js -d -l -v -s https://ledger.mercury.basicattentiontoken.org -P",
12 "touchdown-mercury": "DEBUG=*,-babel ./blastoff.js -d -l -v -s https://ledger.mercury.basicattentiontoken.org -f ./config.json",
13 "blastoff-legacy": "DEBUG=*,-babel ./blastoff.js -d -l -v -s https://ledger.brave.com -1 -P",
14 "touchdown-legacy": "DEBUG=*,-babel ./blastoff.js -d -l -v -s https://ledger.brave.com -1 -f ./config.json",
15 "clean": "node ./tools/clean.js",
16 "lint": "standard --verbose | snazzy",
17 "test": "npm run test-security && npm run test-index",
18 "test-security": "npm audit",
19 "test-index": "node test/indexTest.js",
20 "test-integration": "node test/integrationTest.js"
21 },
22 "repository": {
23 "type": "git",
24 "url": "https://github.com/brave-intl/bat-client"
25 },
26 "author": "Brave Developers <support@brave.com>",
27 "license": "MPL-2.0",
28 "bugs": {
29 "url": "https://github.com/brave-intl/bat-client/issues"
30 },
31 "homepage": "https://github.com/brave-intl/bat-client",
32 "dependencies": {
33 "@ambassify/backoff-strategies": "1.0.0",
34 "bat-balance": "^1.0.7",
35 "bat-publisher": "^2.0.16",
36 "brave-crypto": "^0.1.0",
37 "http-request-signature": "0.0.2",
38 "joi": "^13.1.2",
39 "json-stable-stringify": "1.0.1",
40 "node-anonize2-relic-emscripten": "^0.3.3",
41 "random-lib": "2.1.0",
42 "underscore": "1.8.3",
43 "uuid": "3.1.0"
44 },
45 "engines": {
46 "node": ">=7.10.1",
47 "npm": ">=4.2.0"
48 },
49 "devDependencies": {
50 "babel-eslint": "^8.0.0",
51 "pre-push": "^0.1.1",
52 "rimraf": "^2.6.2",
53 "snazzy": "^7.1.1",
54 "standard": "10.0.3",
55 "tape": "^4.8.0"
56 },
57 "standard": {
58 "ignore": [
59 "bootstrap.js",
60 "config.js"
61 ],
62 "parser": "babel-eslint"
63 },
64 "pre-push": {
65 "run": [
66 "lint"
67 ]
68 }
69}