-
Notifications
You must be signed in to change notification settings - Fork 145
/
package.json
73 lines (73 loc) · 1.75 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
{
"name": "kiteconnect",
"version": "5.0.1",
"description": "The official typescript client for the Kite Connect trading APIs",
"main": "./dist/lib/index.js",
"types": "./types/index.d.ts",
"scripts": {
"generate-docs": "npx typedoc --out ./docs",
"build": "tsc --project tsconfig.json",
"build-test": "tsc --project test/tsconfig.json",
"eslint:fix": "eslint",
"test": "npm run build && npm run build-test && mocha --allowJs test/**/*.js && rimraf **/*.js"
},
"files": [
"dist",
"types",
"package.json",
"README.md",
"LICENSE"
],
"repository": {
"type": "git",
"url": "git+https://github.com/zerodha/kiteconnectjs.git"
},
"keywords": [
"kiteconnect",
"kite",
"zerodha",
"rainmatter",
"trading",
"api",
"stock",
"market",
"javascript",
"typescript"
],
"author": "Rakesh Ranjan",
"license": "MIT",
"bugs": {
"url": "https://github.com/zerodha/kiteconnectjs/issues"
},
"homepage": "https://github.com/zerodha/kiteconnectjs#readme",
"dependencies": {
"@microsoft/tsdoc": "^0.15.0",
"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",
"qs": "^6.12.1",
"rimraf": "^3.0.2",
"ws": "^6.2.2"
},
"devDependencies": {
"@types/chai": "^4.3.4",
"@types/crypto-js": "^4.1.1",
"@types/mocha": "^10.0.1",
"@types/node": "^18.11.18",
"@types/papaparse": "^5.3.14",
"@types/qs": "^6.9.15",
"@types/ws": "^8.5.4",
"eslint": "^8.57.0",
"eslint-plugin-tsdoc": "^0.2.17",
"typedoc": "^0.25.13",
"typescript": "^4.9.5",
"typescript-eslint": "^7.5.0"
},
"engines": {
"node": ">=18.0.0"
},
"engineStrict": true
}