-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 1.11 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
{
"name": "huobi-chain-sdk",
"version": "0.5.0",
"description": "Huobi Chain JavaScript SDK",
"main": "lib/index.js",
"typings": "lib/index.d.ts",
"repository": "https://github.com/HuobiGroup/huobi-chain-js-sdk",
"license": "MIT",
"keywords": [],
"files": [
"lib",
"src"
],
"scripts": {
"build": "tsc --build tsconfig.build.json",
"test": "jest -c jest.e2e.config.js",
"clean": "rimraf lib",
"lint": "eslint src",
"pretty": "pretty-quick --staged",
"prepublishOnly": " npm run build && npm run test"
},
"engines": {
"node": ">=10"
},
"dependencies": {
"@mutadev/muta-sdk": "^0.2.0",
"@mutadev/service": "^0.2.0"
},
"peerDependencies": {
"graphql": "^14.6.0"
},
"devDependencies": {
"@types/jest": "^26.0.5",
"@typescript-eslint/eslint-plugin": "^3.7.0",
"@typescript-eslint/parser": "^3.7.0",
"eslint": "^7.4.0",
"graphql": "^14.6.0",
"jest": "^26.1.0",
"npm-run-all": "^4.1.5",
"prettier": "^2.0.5",
"pretty-quick": "^2.0.1",
"rimraf": "^2.6.2",
"ts-jest": "^26.1.1",
"typescript": "^3.9.6"
}
}