-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 1 KB
/
package.json
File metadata and controls
38 lines (38 loc) · 1 KB
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
{
"name": "@tokenanalyst/sdk",
"version": "1.15.0",
"description": "TokenAnalyst API SDK",
"main": "./dist-node/index",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build-node": "rm -rf dist-node; tsc",
"build-web": "rm -rf dist-web; ./node_modules/.bin/webpack",
"publish-node": "npm publish --access public",
"publish-web": "aws s3 cp dist-web/bundle.js s3://cdn.tokenanalyst.io/sdk.latest.js"
},
"keywords": [
"blockchain",
"ethereum",
"websocket"
],
"author": "https://www.tokenanalyst.io",
"homepage": "https://www.tokenanalyst.io",
"license": "ISC",
"dependencies": {
"@types/node": "10.12.9",
"@types/socket.io-client": "1.4.32",
"axios": "0.18.0",
"socket.io-client": "2.0.2",
"socket.io-json-parser": "2.1.0",
"ts-loader": "5.3.0",
"webpack": "4.26.0",
"winston": "3.1.0"
},
"devDependencies": {
"typescript": "3.3.4000",
"webpack-cli": "3.2.3"
},
"directories": {
"lib": "lib"
}
}