forked from zerodha/kiteconnectjs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
54 lines (54 loc) · 1.23 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
{
"name": "kiteconnect",
"version": "4.1.0",
"description": "The official JS client library for the Kite Connect trading APIs",
"main": "./dist/",
"types": "./types/index.d.ts",
"scripts": {
"generate-docs": "node_modules/.bin/jsdoc --configure .jsdoc.json --verbose",
"build": "tsc",
"test": "tsc && mocha"
},
"repository": {
"type": "git",
"url": "git+https://github.com/zerodhatech/kiteconnectjs.git"
},
"keywords": [
"kiteconnect",
"kite",
"zerodha",
"rainmatter",
"trading",
"api",
"stock",
"market"
],
"author": "Vivek R",
"license": "MIT",
"bugs": {
"url": "https://github.com/zerodhatech/kiteconnectjs/issues"
},
"homepage": "https://github.com/zerodhatech/kiteconnectjs#readme",
"dependencies": {
"axios": "^0.21.2",
"chai": "^4.3.6",
"crypto-js": "^4.0.0",
"mocha": "^10.0.0",
"nock": "^13.2.4",
"papaparse": "^5.3.1",
"ws": "^6.2.2"
},
"devDependencies": {
"@types/crypto-js": "^4.1.1",
"@types/node": "^18.11.18",
"@types/papaparse": "^5.3.5",
"eslint": "^8.30.0",
"jsdoc": "^3.4.0",
"minami": "^1.1.1",
"typescript": "^4.9.4"
},
"engines": {
"node": ">=8.0.0"
},
"engineStrict": true
}