-
Notifications
You must be signed in to change notification settings - Fork 20
/
package.json
67 lines (67 loc) · 2.25 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
{
"name": "upstox-js-sdk",
"version": "2.11.0",
"description": "The official Node Js client for communicating with the Upstox API",
"license": "MIT",
"main": "dist/index.js",
"homepage": "https://github.com/upstox/upstox-nodejs#readme",
"scripts": {
"build": "babel src --out-dir dist && shx mkdir -p dist/feeder/proto/ && shx cp src/feeder/proto/*.proto dist/feeder/proto/",
"test": "mocha --require @babel/register --recursive",
"dev-publish-local": "yalc publish",
"dev-push-local": "yalc push",
"dev-release": "npm run build && npm run dev-publish-local && npm run dev-push-local"
},
"keywords": [
"Upstox",
"Share",
"market",
"trading",
"UpstoxAPI"
],
"browser": {
"fs": false
},
"repository": {
"type": "git",
"url": "[email protected]:upstox/upstox-nodejs.git"
},
"bugs": {
"url": "https://github.com/upstox/upstox-nodejs/issues"
},
"dependencies": {
"@babel/cli": "^7.0.0",
"@babel/traverse": "^7.23.2",
"minimatch": "^3.0.5",
"nanoid": "^3.1.31",
"protobufjs": "^7.2.6",
"superagent": "^5.3.0",
"uuid4": "^2.0.3",
"ws": "^8.16.0"
},
"devDependencies": {
"@babel/core": "^7.0.0",
"@babel/plugin-proposal-class-properties": "^7.0.0",
"@babel/plugin-proposal-decorators": "^7.0.0",
"@babel/plugin-proposal-do-expressions": "^7.0.0",
"@babel/plugin-proposal-export-default-from": "^7.0.0",
"@babel/plugin-proposal-export-namespace-from": "^7.0.0",
"@babel/plugin-proposal-function-bind": "^7.0.0",
"@babel/plugin-proposal-function-sent": "^7.0.0",
"@babel/plugin-proposal-json-strings": "^7.0.0",
"@babel/plugin-proposal-logical-assignment-operators": "^7.0.0",
"@babel/plugin-proposal-nullish-coalescing-operator": "^7.0.0",
"@babel/plugin-proposal-numeric-separator": "^7.0.0",
"@babel/plugin-proposal-optional-chaining": "^7.0.0",
"@babel/plugin-proposal-pipeline-operator": "^7.0.0",
"@babel/plugin-proposal-throw-expressions": "^7.0.0",
"@babel/plugin-syntax-dynamic-import": "^7.0.0",
"@babel/plugin-syntax-import-meta": "^7.0.0",
"@babel/preset-env": "^7.0.0",
"@babel/register": "^7.0.0",
"expect.js": "^0.3.1",
"mocha": "^10.3.0",
"shx": "^0.3.4",
"sinon": "^7.2.0"
}
}