forked from signum-network/signum-chain-walker
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
53 lines (53 loc) · 1.67 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
{
"name": "signum-chain-walker",
"version": "1.0.6",
"description": "",
"main": "dist/index.js",
"private": false,
"scripts": {
"test": "jest",
"build": "rimraf ./dist && tsc",
"build:examples": "npm run build && rimraf ./examples/*.js && tsc -p tsconfig.examples.json",
"build:docs": "typedoc",
"prepare": "husky install && npm run build",
"example:listen": "npm run build:examples && node examples/listen.js",
"example:walk": "npm run build:examples && node examples/walk.js",
"example:walk-listen": "npm run build:examples && node examples/walkAndListen.js",
"example:account-listen": "npm run build:examples && node examples/accountChangeListener.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/signum-network/signum-chain-walker.git"
},
"author": "ohager",
"license": "MIT",
"bugs": {
"url": "https://github.com/signum-network/signum-chain-walker/issues"
},
"homepage": "https://github.com/signum-network/signum-chain-walker#readme",
"devDependencies": {
"@types/fs-extra": "^9.0.13",
"@types/jest": "^29.5.2",
"@types/node": "^18.11.18",
"husky": "^8.0.0",
"jest": "^29.5.0",
"prettier": "^2.8.2",
"pretty-quick": "^3.1.3",
"rimraf": "^5.0.1",
"ts-jest": "^29.1.0",
"ts-node": "^10.9.1",
"typedoc": "^0.24.7",
"typedoc-plugin-missing-exports": "^2.0.0",
"typedoc-theme-oxide": "^0.1.6",
"typescript": "^5.0.4"
},
"dependencies": {
"@signumjs/core": "^1.0.0-rc.75",
"@signumjs/util": "^1.0.0-rc.75",
"fs-extra": "^11.1.0",
"p-retry": "^4.6.2",
"pino": "^8.14.1",
"pino-pretty": "^10.0.0",
"toad-scheduler": "^2.2.0"
}
}