forked from brave-intl/bat-ledger-spec
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
69 lines (69 loc) · 1.8 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
{
"name": "bat-ledger-spec",
"version": "0.0.1",
"description": "Spec for bat ledger",
"scripts": {
"setup": "git submodule init && git submodule update && npm run install-bl",
"install-bl": "cd browser-laptop && npm install",
"module-init": "git submodule update --init --recursive",
"module-update": "git submodule update --remote --recursive",
"test": "npm run test-js && npm run test-c",
"test-js": "cross-env NODE_ENV=test TYPE=\"js\" mocha \"test/**/*.js\" --timeout=9999999",
"test-c": "cross-env NODE_ENV=test TYPE=\"c\" mocha \"test/**/*.js\"",
"lint": "standard --verbose | snazzy"
},
"repository": {
"type": "git",
"url": "git+https://github.com/brave-intl/bat-ledger-spec.git"
},
"keywords": [
"bat",
"ledger"
],
"author": "Nejc Zdovc",
"license": "MPL-2.0",
"bugs": {
"url": "https://github.com/brave-intl/bat-ledger-spec/issues"
},
"homepage": "https://github.com/brave-intl/bat-ledger-spec#readme",
"devDependencies": {
"assert": "^1.4.1",
"babel-eslint": "^8.2.3",
"cross-env": "^5.1.4",
"events": "^2.0.0",
"immutable": "^3.8.2",
"joi": "^13.3.0",
"mocha": "^5.1.1",
"mockery": "^2.1.0",
"node-fetch": "^2.1.2",
"pre-push": "^0.1.1",
"random": "^1.0.0-beta-1",
"random-lib": "^2.1.0",
"request": "^2.85.0",
"sinon": "^5.0.6",
"snap-shot-it": "^4.1.4",
"snazzy": "^7.1.1",
"standard": "^11.0.1",
"sync-request": "^6.0.0",
"underscore": "^1.9.0",
"util": "^0.10.3",
"uuid": "^3.2.1",
"zlib": "^1.0.5"
},
"pre-push": {
"run": [
"lint"
]
},
"engines": {
"node": ">= 9.11.0"
},
"standard": {
"ignore": [
"bat-native-ledger/**",
"browser-laptop/**",
"__snapshots__/**"
],
"parser": "babel-eslint"
}
}