Path: blob/master/bitget-node-sdk-api/package.json
731 views
{1"name": "bitget-api-node-sdk",2"version": "2.1.3",3"description": "",4"main": "build/index.js",5"types": "build/index.d.ts",6"scripts": {7"test": "jest",8"build": "tsc -p tsconfig.json",9"lint": "tslint --fix --project .",10"clean": "rm -rf build/",11"doc": "typedoc --out docs src"12},13"dependencies": {14"axios": "^0.19.2",15"crc-32": "^1.2.0",16"crypto": "^1.0.1",17"node-rsa": "^1.1.1",18"pako": "^1.0.8",19"querystring": "^0.2.0",20"ws": "^6.1.4"21},22"devDependencies": {23"@types/axios": "^0.14.0",24"@types/node": "^14.0.24",25"@types/pako": "^1.0.1",26"@types/ws": "^6.0.1",27"husky": "^4.2.5",28"jest": "^26.1.0",29"prettier": "^2.0.5",30"ts-jest": "^26.1.3",31"tslint": "^6.1.2",32"typedoc": "^0.17.8",33"typescript": "^3.9.7"34},35"husky": {36"hooks": {37"pre-commit": "npm run lint"38}39},40"author": "bitget openapi",41"license": "ISC"42}434445