UNPKG

2.55 kBJSONView Raw
1{
2 "name": "bat-client",
3 "version": "4.0.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 "brave-crypto": "^0.2.0",
36 "http-request-signature": "0.0.2",
37 "joi": "^13.1.2",
38 "json-stable-stringify": "1.0.1",
39 "node-anonize2-relic-emscripten": "^0.3.3",
40 "underscore": "1.8.3",
41 "uuid": "3.1.0"
42 },
43 "engines": {
44 "node": ">=7.10.1",
45 "npm": ">=4.2.0"
46 },
47 "devDependencies": {
48 "babel-eslint": "^8.0.0",
49 "pre-push": "^0.1.1",
50 "rimraf": "^2.6.2",
51 "snazzy": "^7.1.1",
52 "standard": "10.0.3",
53 "tape": "^4.8.0"
54 },
55 "standard": {
56 "ignore": [
57 "bootstrap.js",
58 "config.js"
59 ],
60 "parser": "babel-eslint"
61 },
62 "pre-push": {
63 "run": [
64 "lint"
65 ]
66 }
67}