-
Notifications
You must be signed in to change notification settings - Fork 60
/
package.json
62 lines (62 loc) · 1.49 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
{
"name": "poloniex-api-node",
"version": "3.1.3",
"description": "Simple node.js wrapper for Poloniex REST and WebSocket API.",
"type": "module",
"main": "./dist/cjs/poloniex.cjs",
"module": "./lib/poloniex.mjs",
"exports": {
".": {
"import": "./lib/poloniex.mjs",
"require": "./dist/cjs/poloniex.cjs"
}
},
"engines": {
"node": "19.x"
},
"scripts": {
"test:cjs": "mocha --config .mocharc.cjs.json",
"test:esm": "mocha --config .mocharc.esm.json",
"test": "yarn test:cjs && yarn test:esm",
"build": "babel lib --out-dir dist/cjs --extensions '.mjs' --out-file-extension '.cjs' --source-maps"
},
"files": [
"lib/",
"dist/"
],
"repository": {
"type": "git",
"url": "https://github.com/dutu/poloniex-api-node"
},
"keywords": [
"api",
"bitcoin",
"poloniex",
"btc",
"eth",
"REST",
"WebSocket"
],
"author": "dutu <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/dutu/poloniex-api-node/issues"
},
"homepage": "https://github.com/dutu/poloniex-api-node",
"packageManager": "[email protected]",
"dependencies": {
"axios": "^1.4.0",
"crypto-js": "^4.1.1",
"debug": "^4.3.4",
"forever-websocket": "^0.4.1"
},
"devDependencies": {
"@babel/cli": "^7.22.9",
"@babel/core": "^7.22.9",
"@babel/preset-env": "^7.22.9",
"@babel/register": "^7.22.5",
"babel-plugin-add-module-exports": "^1.0.4",
"chai": "^4.3.7",
"mocha": "^10.2.0"
}
}