-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
100 lines (100 loc) · 3 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
{
"name": "psf-slp-indexer",
"version": "3.0.7",
"description": "Indexer for validating SLP transactions. Uses LevelDB.",
"main": "index.js",
"type": "module",
"scripts": {
"start": "node --max_old_space_size=16000 index.js",
"test": "npm run test:all",
"test:all": "export SVC_ENV=test && c8 --reporter=text mocha --exit --timeout 15000 --recursive test/unit/",
"test:unit": "export SVC_ENV=test && c8 --reporter=text mocha --exit --timeout 15000 --recursive test/unit/",
"test:temp": "export SVC_ENV=test && mocha --exit --timeout 15000 -g '#rate-limit' test/unit/json-rpc/",
"lint": "standard --env mocha --fix",
"docs": "./node_modules/.bin/apidoc -i src/ -o docs",
"coverage": "c8 report --reporter=text-lcov | coveralls",
"coverage:report": "export SVC_ENV=test && c8 --reporter=html mocha --exit --timeout 15000 --recursive test/unit/ test/e2e/automated/",
"reindex": "node --max_old_space_size=16000 src/adapters/slp-indexer/re-index.js"
},
"author": "Chris Troutner <[email protected]>",
"license": "GPL-2.0",
"apidoc": {
"title": "psf-slp-indexer",
"url": "localhost:5000"
},
"repository": "Permissionless-Software-Foundation/psf-slp-indexer",
"dependencies": {
"@chris.troutner/retry-queue-commonjs": "1.0.8",
"@chris.troutner/slp-validate": "1.2.2",
"@psf/bch-js": "6.7.3",
"@psf/bitcoincash-zmq-decoder": "0.1.5",
"axios": "0.27.2",
"bcryptjs": "2.4.3",
"bignumber.js": "9.0.1",
"bitcoin-rpc-promise-retry": "1.3.0",
"glob": "7.1.6",
"ipfs-coord-esm": "9.1.13",
"ipfs-http-client": "58.0.0",
"jsonrpc-lite": "2.2.0",
"jsonwebtoken": "8.5.1",
"jwt-bch-lib": "1.3.0",
"kcors": "2.2.2",
"koa": "2.13.1",
"koa-bodyparser": "4.3.0",
"koa-convert": "2.0.0",
"koa-generic-session": "2.1.1",
"koa-logger": "3.2.1",
"koa-mount": "4.0.0",
"koa-passport": "4.1.3",
"koa-router": "10.0.0",
"koa-static": "5.0.0",
"koa2-ratelimit": "0.9.1",
"level": "7.0.1",
"line-reader": "0.4.0",
"minimal-slp-wallet": "5.11.1",
"mongoose": "5.13.14",
"node-fetch": "npm:@achingbrain/[email protected]",
"nodemailer": "6.7.5",
"p-queue": "7.4.1",
"p-retry": "6.0.0",
"passport-local": "1.0.0",
"public-ip": "4.0.4",
"readline": "1.3.0",
"shelljs": "0.8.4",
"slp-parser": "0.0.4",
"winston": "3.3.3",
"winston-daily-rotate-file": "4.5.0",
"zeromq": "6.1.2"
},
"devDependencies": {
"apidoc": "0.51.1",
"c8": "7.12.0",
"chai": "4.3.0",
"coveralls": "3.1.0",
"husky": "4.3.8",
"lodash.clonedeep": "^4.5.0",
"mocha": "10.0.0",
"semantic-release": "19.0.3",
"sinon": "9.2.4",
"standard": "17.0.0",
"uuid": "8.3.2"
},
"release": {
"publish": [
{
"path": "@semantic-release/npm",
"npmPublish": false
}
]
},
"husky": {
"hooks": {
"pre-commit": "npm run lint"
}
},
"standard": {
"ignore": [
"/test/unit/mocks/**/*.js"
]
}
}