-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
42 lines (42 loc) · 1.26 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
{
"name": "@wazirx/node-client",
"version": "1.0.0",
"description": "node sdk for wazirx",
"main": "lib/cjs/index.js",
"types": "lib/types/index.d.ts",
"module": "lib/esm/index.js",
"scripts": {
"tsc": "tsc",
"build": "npm run build:cjs && npm run build:esm && npm run build:types",
"build:cjs": "node tools/cleanup cjs && tsc -p config/tsconfig.cjs.json",
"build:esm": "node tools/cleanup esm && tsc -p config/tsconfig.esm.json",
"build:types": "node tools/cleanup types && tsc -p config/tsconfig.types.json",
"prepare": "npm run build",
"test": "mocha test/test.js -r dotenv/config --timeout 10000"
},
"repository": {
"type": "git",
"url": "git+https://github.com/arunnattarayan/wazirx-connector-node.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/WazirX/wazirx-connector-node/issues"
},
"homepage": "https://github.com/WazirX/wazirx-connector-node#readme",
"devDependencies": {
"@types/ws": "^8.5.3",
"chai": "^4.3.4",
"dotenv": "^10.0.0",
"mocha": "^9.1.3",
"typescript": "^4.5.4"
},
"dependencies": {
"@types/crypto-js": "^4.1.0",
"axios": "^0.24.0",
"crypto-js": "^4.1.1",
"module_name": "^1.0.0",
"ws": "^8.5.0"
}
}