-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
58 lines (58 loc) · 1.6 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
{
"name": "node-bithumb",
"version": "0.0.0-development",
"description": "NodeJS wrapped for Bithumb API",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "rm -rf ./dist & tsc -p tsconfig.json",
"deploy": "npm i && npm run lint && npm run build && npm publish",
"lint": "eslint . --ext .ts",
"lint:fix": "eslint . --ext .ts --fix",
"semantic-release": "semantic-release"
},
"repository": {
"type": "git",
"url": "https://github.com/imwh0im/node-bithumb.git"
},
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/imwh0im/node-bithumb/issues"
},
"homepage": "https://github.com/imwh0im/node-bithumb#readme",
"keywords": [
"quant",
"bithumb",
"bithumb api",
"bithumb sdk",
"bithumb typescript",
"bithumb node",
"bitcoin",
"bitcoin trade",
"bitcoin api"
],
"devDependencies": {
"@semantic-release/git": "^10.0.1",
"@semantic-release/github": "^8.0.1",
"@semantic-release/npm": "^8.0.0",
"@types/node": "^16.9.6",
"@typescript-eslint/eslint-plugin": "^4.29.0",
"@typescript-eslint/parser": "^4.29.0",
"eslint": "^7.32.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-config-airbnb-typescript": "^12.3.1",
"eslint-config-standard": "^16.0.3",
"eslint-plugin-import": "^2.24.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^5.1.0",
"semantic-release": "^18.0.0",
"ts-node": "^10.2.1",
"typescript": "^4.3.5"
},
"dependencies": {
"axios": "^0.21.1",
"crypto": "^1.0.1",
"query-string": "^7.0.1"
}
}