-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
33 lines (33 loc) · 1019 Bytes
/
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
{
"name": "exc-balance-checker",
"version": "2.2.1",
"description": "One-function solution for checking an address' balance on Eximchain's main or gamma networks.",
"main": "build/index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "tsc --esModuleInterop index.ts --outDir ./build",
"prepublishOnly": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Eximchain/exc-balance-checker.git"
},
"author": "John O'Sullivan <john@eximchain.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/Eximchain/exc-balance-checker/issues"
},
"homepage": "https://github.com/Eximchain/exc-balance-checker#readme",
"dependencies": {
"@babel/polyfill": "^7.0.0",
"@types/node": "^11.13.4",
"lodash.sample": "^4.2.1",
"web3": "1.0.0-beta.34"
},
"devDependencies": {
"@babel/cli": "^7.1.0",
"@babel/core": "^7.1.0",
"@babel/preset-env": "^7.1.0",
"typescript": "^3.4.3"
}
}