forked from yeikiu/ts-kraken
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
63 lines (63 loc) · 1.75 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
{
"name": "ts-kraken",
"version": "3.0.21",
"description": "A versatile unofficial ts-lib & node-repl-cli to operate against the Kraken Crypto Exchange",
"keywords": [
"kraken",
"api",
"rest",
"ws",
"ts",
"typescript",
"repl",
"cli"
],
"author": "JQ",
"contributors": [
"https://github.com/trasherdk"
],
"repository": {
"type": "git",
"url": "https://github.com/yeikiu/ts-kraken.git"
},
"bugs": {
"url": "https://github.com/yeikiu/ts-kraken/issues"
},
"main": "dist/index.js",
"types": "dist/index.d.ts",
"license": "CC0-1.0",
"bin": {
"kraken-repl": "dist/repl/repl_cli.js"
},
"scripts": {
"build": "npm run lint && rimraf dist && tsc -p .",
"lint": "tsc -p . --noEmit && eslint \"src/**/*.{js,ts}\" --quiet --fix",
"lint:warn": "tsc -p . --noEmit && eslint \"src/**/*.{js,ts}\"",
"watch": "nodemon",
"repl": "ts-node src/repl/repl_cli.ts",
"sync:badges": "npx setup-gh-badges",
"zsh:bump:deps": "deps=$(jq '.dependencies|keys|join(\" \")' package.json | tr -d '\"'); npm uninstall $(echo $deps); npm i $(echo $deps);",
"zsh:bump:devDeps": "devDeps=$(jq '.devDependencies|keys|join(\" \")' package.json | tr -d '\"'); npm uninstall $(echo $devDeps); npm i --save-dev $(echo $devDeps);",
"zsh:bump:all": "npm run zsh:bump:devDeps && npm run zsh:bump:deps"
},
"devDependencies": {
"@types/node": "^18.7.8",
"@typescript-eslint/eslint-plugin": "^5.33.1",
"@typescript-eslint/parser": "^5.33.1",
"eslint": "^8.22.0",
"eslint-plugin-import": "^2.26.0",
"nodemon": "^2.0.19",
"rimraf": "^3.0.2",
"ts-node": "^10.9.1",
"typescript": "^4.7.4"
},
"dependencies": {
"axios": "^0.27.2",
"chalk": "^4.1.2",
"dotenv": "^16.0.1",
"node-jq": "^2.3.3",
"qs": "^6.11.0",
"rxjs": "^7.5.6",
"ws": "^8.8.1"
}
}