-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
73 lines (73 loc) · 1.96 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
68
69
70
71
72
73
{
"name": "monetcli",
"version": "1.3.1",
"main": "./dist/monetcli.js",
"typings": "./dist/typings/monetcli.d.ts",
"license": "MIT",
"author": "Mosaic Networks",
"authors": [
{
"name": "Danu Kumanan",
"email": "[email protected]",
"homepage": "https://github.com/danu3006"
}
],
"scripts": {
"lint": "tslint -p . -c ./tslint.json",
"prepublish": "npm run build",
"clean": "rm -rf node_modules dist bin package-lock.json",
"build": "yarn lint && tsc -p tsconfig.json",
"build:watch": "npm run build --watch",
"test": "jest",
"dev": "yarn install --registry http://192.168.1.15:1234",
"publish:dev": "yarn publish --registry http://192.168.1.15:1234",
"add:dev": "yarn add --registry http://192.168.1.15:1234",
"linkalldev": "yarn link evm-lite-core evm-lite-consensus evm-lite-keystore evm-lite-datadir evm-lite-client evm-lite-utils evm-lite-cli",
"i": "ts-node src/monetcli i",
"e": "ts-node src/monetcli",
"pkg": "pkg . --out-path ./bin"
},
"dependencies": {
"chalk": "^2.4.2",
"cli-table": "^0.3.1",
"evm-lite-cli": "^1.4.1",
"evm-lite-client": "^1.3.7",
"evm-lite-consensus": "^1.3.7",
"evm-lite-core": "^1.3.7",
"evm-lite-datadir": "^1.3.7",
"evm-lite-keystore": "^1.3.7",
"evm-lite-utils": "^1.3.7",
"figlet": "^1.2.4",
"inquirer": "^7.0.0",
"mkdirp": "^0.5.1",
"npmlog": "^4.1.2",
"vorpal": "^1.12.0"
},
"devDependencies": {
"@types/cli-table": "^0.3.0",
"@types/figlet": "^1.2.0",
"@types/inquirer": "^6.5.0",
"@types/jest": "^24.0.18",
"@types/mkdirp": "^0.5.2",
"@types/node": "^12.7.5",
"@types/npmlog": "^4.1.2",
"edit-json-file": "^1.3.1",
"ts-node": "^8.4.1",
"tslint": "^5.20.0",
"tslint-config-prettier": "^1.18.0",
"typescript": "^3.6.3"
},
"bin": {
"monetcli": "./dist/monetcli.js"
},
"repository": {
"type": "git",
"url": "https://github.com/mosaicnetworks/monetcli.git"
},
"pkg": {
"assets": [
"./node_modules/figlet/fonts/Standard.flf"
],
"out-path": "./bin"
}
}