-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
65 lines (65 loc) · 1.45 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
{
"name": "@blockcore/provider",
"version": "0.0.14",
"description": "Multi-Chain Web Provider for Blockcore",
"type": "module",
"exports": "./lib/index.js",
"types": "./lib/index.d.ts",
"files": [
"lib/**/*"
],
"engines": {
"node": ">=18.*"
},
"scripts": {
"build": "tsc",
"lint": "eslint .",
"test": "npm run lint && ava",
"version": "node -p \"require('./package.json').version\"",
"changelog": "conventional-changelog -i CHANGELOG.md -s -r 0 && git add CHANGELOG.md"
},
"keywords": [
"blockchain",
"indexer",
"blockcore"
],
"author": "Blockcore",
"license": "MIT",
"homepage": "https://github.com/block-core/blockcore-provider",
"repository": {
"type": "git",
"url": "git@github.com:block-core/blockcore-provider.git"
},
"bugs": {
"url": "https://github.com/block-core/blockcore-provider/issues"
},
"devDependencies": {
"@blockcore/tsconfig": "^0.0.1",
"@typescript-eslint/eslint-plugin": "^5.41.0",
"@typescript-eslint/parser": "^5.41.0",
"ava": "^5.0.1",
"eslint": "^8.26.0",
"eslint-config-standard": "^17.0.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-n": "^15.3.0",
"eslint-plugin-promise": "^6.1.1",
"ts-node": "^10.9.1",
"typescript": "^4.8.4"
},
"ava": {
"files": [
"test/*"
],
"timeout": "1m",
"extensions": {
"ts": "module"
},
"nodeArguments": [
"--loader=ts-node/esm"
]
},
"dependencies": {
"@blockcore/coininfo": "^5.2.2",
"@blockcore/dns": "^0.0.9"
}
}