forked from Airtune/banano-nft-crawler
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
35 lines (35 loc) · 1.17 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
{
"name": "banano-nft-crawler",
"version": "2.0.3",
"description": "Library for crawling across the Banano ledger to trace NFTs.",
"files": [
"dist/**/*.*",
"src/**/*.*"
],
"scripts": {
"build": "npx tsc --build tsconfig.json",
"test": "mocha --require ts-node/register ./test/*.spec.ts",
"testSupplyBlocksCrawler": "mocha --require ts-node/register ./test/supply-blocks-crawler.spec.ts",
"testMintBlocksCrawler": "mocha --require ts-node/register ./test/mint-blocks-crawler.spec.ts",
"testAssetCrawler": "mocha --require ts-node/register ./test/asset-crawler.spec.ts",
"testFindReceiveBlock": "mocha --require ts-node/register ./test/find-receive-block.spec.ts"
},
"author": "Airtune",
"license": "MIT",
"dependencies": {
"@bananocoin/bananojs": "^2.8.7",
"nano-account-crawler": "^2.0.1",
"nano-ipfs": "^1.0.4",
"node-fetch": "^2.6.7"
},
"devDependencies": {
"@types/mocha": "^9.1.0",
"@types/node": "^18.15.5",
"chai": "^4.3.7",
"chai-as-promised": "^7.1.1",
"mocha": "^10.2.0",
"ts-node": "^10.9.1",
"typescript": "^5.0.2"
},
"repository": "https://github.com/Airtune/banano-nft-crawler"
}