-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
41 lines (41 loc) · 1.12 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
{
"name": "incognito-cli-wallet",
"version": "1.0.0",
"author": "Olivier Sarrouy <osarrouy@protonmail.com>",
"main": "src/index.js",
"bin": {
"incognito": "./lib/index.js"
},
"license": "MIT",
"private": false,
"scripts": {
"lint": "npx eslint --fix src/ --ext js,json",
"build": "npx babel src -d lib",
"dev": "npx babel --watch src -d lib"
},
"dependencies": {
"bignumber.js": "^9.0.0",
"capture-console": "^1.0.1",
"chalk": "^4.0.0",
"columnify": "^1.5.4",
"incognito-js": "https://github.com/incognitochain/sdk-v2",
"inquirer": "^7.1.0",
"level": "^6.0.1",
"ora": "^4.0.3",
"qrcode-terminal": "^0.12.0",
"yargs": "^15.3.1"
},
"devDependencies": {
"@babel/cli": "^7.8.4",
"@babel/core": "^7.9.0",
"@babel/plugin-proposal-throw-expressions": "^7.8.3",
"@babel/preset-env": "^7.9.0",
"babel-plugin-module-resolver": "^4.0.0",
"eslint": "^6.8.0",
"eslint-plugin-import": "^2.20.2",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1",
"parcel-bundler": "^1.12.4"
}
}