forked from igorek17000/alunajs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
92 lines (92 loc) · 3.13 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
{
"name": "alunajs",
"version": "1.2.3",
"description": "Standardizing Crypto Trading APIs across multiple exchanges",
"files": [
"dist"
],
"main": "dist/index.js",
"types": "dist/index.d.ts",
"author": "Anderson Arboleya<[email protected]>",
"contributors": [
"Sergio Torres<[email protected]>"
],
"license": "MIT",
"engines": {
"node": "^16.14"
},
"repository": "alunacrypto/alunajs",
"scripts": {
"clean": "rimraf dist",
"clean-index": "rm -rf src/index.ts",
"build": "yarn clean && yarn build-index && tsc -p tsconfig.dist.json && yarn clean-index",
"build-index": "yarn cti entrypoint src -s false -e 'exchanges' -i '.spec' -i '.mock' -o index.ts -w -b",
"build-watch": "yarn clean && tsc -p tsconfig.dist.json -w",
"lint": "eslint src --cache --cache-location .eslintcache/ --ext .ts --max-warnings=0",
"lintfix": "eslint src --cache --cache-location .eslintcache/ --ext .ts --max-warnings=0 --fix",
"test": "mocha --reporter dot",
"test-watch": "mocha --watch --reporter dot",
"test-cover": "nyc mocha --reporter dot",
"test-cover-watch": "nyc mocha --watch --reporter dot",
"test-ci": "nyc mocha --bail --forbid-only --reporter dot",
"test-e2e": "mocha -j 1 --config test/e2e/.mocharc.js test/e2e/index.ts",
"test-e2e-watch": "mocha -j 1 --config test/e2e/.mocharc.js test/**/*.ts --watch",
"playground": "nodemon -w src -e ts -x 'DEBUG=alunajs:* ts-node .playground/index.ts'",
"add-exchange": "ts-node .scaffolding/addExchange.ts",
"release": "np --test-script=test-cover",
"prepublish": "yarn build",
"prepare": "husky install"
},
"dependencies": {
"axios": "^0.21.1",
"bignumber.js": "^9.0.2",
"debug": "^4.3.4",
"fast-json-stable-stringify": "^2.1.0",
"joi": "^17.6.0",
"js-sha512": "^0.8.0",
"lodash": "^4.17.21",
"node-cache": "^5.1.2"
},
"devDependencies": {
"@types/chai": "^4.2.18",
"@types/chalk": "^2.2.0",
"@types/compression": "^1.7.2",
"@types/debug": "^4.1.7",
"@types/express": "^4.17.13",
"@types/inquirer": "^8.2.1",
"@types/lodash": "^4.14.178",
"@types/mocha": "^9.1.1",
"@types/node": "^15.3.1",
"@types/shelljs": "^0.8.11",
"@types/sinon": "^10.0.0",
"@types/yargs": "^17.0.10",
"@typescript-eslint/eslint-plugin": "5.4.0",
"@typescript-eslint/parser": "5.4.0",
"chai": "^4.3.4",
"chalk": "4.1.2",
"compression": "^1.7.4",
"create-ts-index": "^1.14.0",
"dotenv": "^16.0.0",
"eslint": "^7.26.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-import-resolver-typescript": "^2.4.0",
"eslint-plugin-chai-friendly": "^0.7.1",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-import-helpers": "^1.1.0",
"eslint-plugin-unused-imports": "^1.1.1",
"express": "^4.18.0",
"husky": "^7.0.4",
"inquirer": "^8.2.3",
"mocha": "^9.1.3",
"nodemon": "^2.0.16",
"nyc": "^15.1.0",
"rimraf": "^3.0.2",
"shelljs": "^0.8.5",
"sinon": "^10.0.0",
"sleep-promise": "^9.1.0",
"ts-mock-imports": "^1.3.7",
"ts-node": "^10.0.0",
"typescript": "^4.4.4",
"yargs": "^17.4.1"
}
}