-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
49 lines (49 loc) · 1.54 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
{
"name": "echo-tools",
"version": "0.1.0",
"description": "JavaScript ECHO library for register accounts and work with transactions node.js",
"main": "./dist/index.js",
"types": "./types/index.d.ts",
"scripts": {
"build": "npx babel src --out-dir dist",
"check-typing": "npx tsc",
"lint": "eslint .",
"lint:debug": "npm run lint -- --debug",
"lint:fix": "npm run lint -- --fix"
},
"homepage": "https://github.com/echoprotocol/echo-tools",
"repository": {
"type": "git",
"url": "https://github.com/echoprotocol/echo-tools.git"
},
"author": {
"name": "PixelPlex, Inc.",
"email": "[email protected]",
"url": "https://pixelplex.io"
},
"bugs": {
"url": "https://gitlab.pixelplex.by/645.echo/echo-tools/issues"
},
"license": "MIT",
"dependencies": {
"@babel/runtime-corejs3": "^7.6.0",
"bignumber.js": "^9.0.0",
"echojs-lib": "^1.10.0-rc.3",
"ethereumjs-wallet": "^0.6.3",
"web3": "^1.2.6"
},
"devDependencies": {
"@babel/cli": "^7.2.3",
"@babel/core": "^7.2.2",
"@babel/node": "^7.5.5",
"@babel/plugin-transform-runtime": "^7.6.0",
"@babel/polyfill": "^7.7.0",
"@babel/preset-env": "^7.3.1",
"@babel/register": "^7.0.0",
"eslint": "^6.8.0",
"eslint-config-airbnb": "^18.0.1",
"eslint-plugin-import": "^2.20.1",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-react": "^7.18.3"
}
}