-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
95 lines (95 loc) · 2.84 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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
{
"name": "foxbit-exapi",
"version": "1.0.6",
"description": "API for FoxBit Exchange",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
},
"scripts": {
"tsc:build": "tsc",
"format": "prettier --write",
"lint": "eslint --fix 'src/**/*.ts'",
"prepare": "npm run tsc:build && npm run docs",
"docs": "npx typedoc",
"test-public-api-debug": "cross-env LOG_ENABLED=true mocha --require ts-node/register test/**/*-public*.ts",
"test-public-api": "cross-env LOG_ENABLED=false mocha --require ts-node/register test/**/*-public*.ts",
"test-private-api-debug": "cross-env LOG_ENABLED=true mocha --require ts-node/register -r dotenv/config test/**/*-private*.ts",
"test-private-api": "cross-env LOG_ENABLED=false mocha --require ts-node/register -r dotenv/config test/**/*-private*.ts",
"test-debug": "cross-env LOG_ENABLED=true mocha --require ts-node/register test/**/*.ts",
"test": "cross-env LOG_ENABLED=false mocha --require ts-node/register test/**/*.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/hadnet/foxbit-exapi.git"
},
"keywords": [
"foxbit",
"api",
"foxbit-api",
"cyptocurrency"
],
"author": "hadnet",
"license": "MIT",
"bugs": {
"url": "https://github.com/hadnet/foxbit-exapi/issues"
},
"homepage": "https://github.com/hadnet/foxbit-exapi#readme",
"devDependencies": {
"@commitlint/cli": "^12.1.4",
"@commitlint/config-conventional": "^12.1.4",
"@types/chai": "^4.2.18",
"@types/mocha": "^8.2.2",
"@types/node": "^15.0.2",
"@types/ws": "^7.4.4",
"@typescript-eslint/eslint-plugin": "^4.22.1",
"@typescript-eslint/parser": "^4.22.1",
"chai": "^4.3.4",
"commitizen": "^4.2.4",
"cross-env": "^5.2.0",
"cz-conventional-changelog": "3.3.0",
"eslint": "^7.26.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^3.4.0",
"husky": "4.3.6",
"lint-staged": "^11.0.0",
"mocha": "^8.4.0",
"prettier": "^2.3.0",
"rimraf": "^2.6.3",
"ts-node": "^9.1.1",
"typedoc": "^0.20.36",
"typescript": "4.2",
"typescript-eslint-parser": "^22.0.0"
},
"files": [
"lib/**/*"
],
"dependencies": {
"date-fns": "^2.21.3",
"dotenv": "^9.0.2",
"reconnecting-websocket": "^4.4.0",
"rxjs": "^6.3.3",
"winston": "^3.2.0",
"winston-daily-rotate-file": "^3.6.0",
"ws": "^7.4.5"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS",
"prepare-commit-msg": "exec < /dev/tty && git cz --hook || true"
}
},
"lint-staged": {
"*.{ts,tsx,json}": [
"prettier --write"
]
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}