-
Notifications
You must be signed in to change notification settings - Fork 37
Expand file tree
/
Copy pathpackage.json
More file actions
87 lines (87 loc) · 3.08 KB
/
Copy pathpackage.json
File metadata and controls
87 lines (87 loc) · 3.08 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
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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
{
"name": "@hashgraph/stablecoin-npm-cli",
"version": "4.2.0",
"description": "CLI for Hedera Stablecoin",
"main": "./build/src/index.js",
"bin": {
"accelerator": "build/src/index.js"
},
"exports": {
".": "./build/src/index.js"
},
"files": [
"build/"
],
"scripts": {
"start": "clear && ./node_modules/.bin/tsc && node ./build/src/index.js",
"start:wizard": "clear && echo 𝌗 Starting Stablecoin CLI 𝌗 ... && ./node_modules/.bin/tsc && clear && node ./build/src/index.js wizard -cp './hsca-config.yaml' -n 'testnet'",
"clean": "rimraf coverage build tmp",
"clean:modules": "rimraf node_modules",
"prebuild": "npm run lint",
"postbuild": "shx cp src/resources/config/.hedera-stable-coin-cli.yaml build/src/resources/config/.hedera-stable-coin-cli.yaml",
"build": "./node_modules/.bin/tsc -p tsconfig.json",
"build:watch": "./node_modules/.bin/tsc -w -p tsconfig.json",
"build:release": "npm run clean && ./node_modules/.bin/tsc -p tsconfig.release.json",
"lint": "eslint --ext .ts --ext .mts .",
"license:check": "license-check-and-add check -f src/resources/license-check-and-add.json",
"license:add": "license-check-and-add add -f src/resources/license-check-and-add.json",
"prettier": "prettier --config .prettierrc --write .",
"prettier:check": "prettier --config .prettierrc --check",
"pre-commit": "npm run license:add && npm run prettier && npm run lint",
"test": "jest --coverage --maxWorkers=50%",
"test:optimized": "jest --maxWorkers=25%",
"test:watch": "jest --watch --maxWorkers=25%",
"test:ci": "jest --runInBand --forceExit --detectOpenHandles",
"test:vm": "NODE_OPTIONS=--experimental-vm-modules npm run test",
"clear-cache": "npx jest --clearCache",
"prepack": "npm run build"
},
"keywords": [],
"author": "",
"license": "Apache-2.0",
"repository": "https://github.com/hashgraph/stablecoin-studio",
"devDependencies": {
"@types/colors": "1.2.4",
"@types/fs-extra": "11.0.4",
"@types/inquirer": "8.2.12",
"@types/jest": "29.5.14",
"@types/js-yaml": "4.0.9",
"@types/node": "18.19.130",
"@types/ora": "3.2.0",
"@types/shelljs": "0.8.17",
"@typescript-eslint/eslint-plugin": "5.62.0",
"@typescript-eslint/parser": "5.62.0",
"cross-env": "7.0.3",
"eslint": "8.57.1",
"eslint-config-prettier": "8.10.2",
"eslint-plugin-jest": "27.9.0",
"eslint-plugin-license-header": "0.6.1",
"jest": "29.7.0",
"license-check-and-add": "4.0.5",
"prettier": "2.8.8",
"rimraf": "4.4.1",
"shx": "0.3.4",
"ts-jest": "29.4.6",
"tsutils": "3.21.0",
"typescript": "4.9.4"
},
"dependencies": {
"@hashgraph/stablecoin-npm-sdk": "*",
"@iarna/toml": "2.2.5",
"big.js": "6.2.2",
"chalk": "5.6.2",
"cli-table3": "0.6.5",
"colors": "1.4.0",
"commander": "10.0.1",
"figlet-promised": "1.0.0",
"fs-extra": "11.3.3",
"inquirer": "8.2.7",
"js-yaml": "4.1.1",
"lodash": "4.18.1",
"maskdata": "1.3.4",
"ora": "6.3.1",
"shelljs": "0.8.5",
"ts-node": "10.9.2",
"tslib": "2.8.1"
}
}