This repository has been archived by the owner on Jun 6, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
67 lines (67 loc) · 2.49 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
{
"name": "bat-client",
"version": "5.0.0",
"description": "An example of client code for the BAT.",
"main": "index.js",
"scripts": {
"blastoff": "DEBUG=*,-babel ./blastoff.js -d -l -v -s http://127.0.0.1:3001 -b http://127.0.0.1:3003 -P",
"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",
"blastoff-staging": "DEBUG=*,-babel ./blastoff.js -d -l -v -s https://ledger-staging.mercury.basicattentiontoken.org -b https://balance-staging.mercury.basicattentiontoken.org -P",
"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",
"blastoff-mercury": "DEBUG=*,-babel ./blastoff.js -d -l -v -s https://ledger.mercury.basicattentiontoken.org -P",
"touchdown-mercury": "DEBUG=*,-babel ./blastoff.js -d -l -v -s https://ledger.mercury.basicattentiontoken.org -f ./config.json",
"blastoff-legacy": "DEBUG=*,-babel ./blastoff.js -d -l -v -s https://ledger.brave.com -1 -P",
"touchdown-legacy": "DEBUG=*,-babel ./blastoff.js -d -l -v -s https://ledger.brave.com -1 -f ./config.json",
"clean": "node ./tools/clean.js",
"lint": "standard --verbose | snazzy",
"test": "npm run test-security && npm run test-index",
"test-security": "npm audit",
"test-index": "node test/indexTest.js",
"test-integration": "node test/integrationTest.js"
},
"repository": {
"type": "git",
"url": "https://github.com/brave-intl/bat-client"
},
"author": "Brave Developers <support@brave.com>",
"license": "MPL-2.0",
"bugs": {
"url": "https://github.com/brave-intl/bat-client/issues"
},
"homepage": "https://github.com/brave-intl/bat-client",
"dependencies": {
"@ambassify/backoff-strategies": "1.0.0",
"bat-balance": "^1.0.7",
"brave-crypto": "^0.2.0",
"http-request-signature": "0.0.2",
"joi": "^13.1.2",
"json-stable-stringify": "1.0.1",
"node-anonize2-relic-emscripten": "^0.3.3",
"underscore": "1.8.3",
"uuid": "3.1.0"
},
"engines": {
"node": ">=7.10.1",
"npm": ">=4.2.0"
},
"devDependencies": {
"babel-eslint": "^8.0.0",
"pre-push": "^0.1.1",
"rimraf": "^2.6.2",
"snazzy": "^7.1.1",
"standard": "10.0.3",
"tape": "^4.8.0"
},
"standard": {
"ignore": [
"bootstrap.js",
"config.js"
],
"parser": "babel-eslint"
},
"pre-push": {
"run": [
"lint"
]
}
}