forked from taariq/anchorcli
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
71 lines (71 loc) · 1.82 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
{
"name": "@anchor-protocol/anchorcli",
"version": "1.0.9",
"author": "Anchor Protocol",
"license": "Apache-2.0",
"main": "./dist/index.js",
"scripts": {
"lint": "eslint \"src/**/*.{js,ts,tsx}\"",
"format": "prettier \"**/src/**/*.{js,ts,json}\" --write",
"start": "multiplerun start",
"build": "tsc --module commonjs",
"prepublishOnly": "npm run build",
"e2e": "yarn run build && bash test/e2e.sh",
"test": "jest --colors",
"coverage": "jest --coverage"
},
"multiplerun": {
"start": [
"node bin/anchorcli --help"
]
},
"files": [
"dist",
"bin"
],
"bin": {
"anchorcli": "bin/anchorcli"
},
"publishConfig": {
"access": "public"
},
"dependencies": {
"@anchor-protocol/anchor.js": "^1.2.0",
"@terra-money/terra.js": "^2.1.4",
"@terra-money/terra.proto": "^0.1.6",
"@types/jest": "^26.0.22",
"chalk": "^4.1.0",
"clear": "^0.1.0",
"commander": "^6.2.0",
"cross-fetch": "^3.1.2",
"dot-prop": "^6.0.1",
"figlet": "^1.5.0",
"jsome": "^2.5.0",
"jsonschema": "^1.4.0",
"lodash": "^4.17.20",
"yaml": "^1.10.0",
"yesno": "^0.3.1"
},
"devDependencies": {
"@ssen/eslint-config": "^1.3.1",
"@ssen/prettier-config": "^1.2.0",
"@types/eslint": "^7.2.6",
"@types/eslint-plugin-prettier": "^3.1.0",
"@types/lodash": "^4.14.168",
"@types/prettier": "2.1.6",
"@types/yaml": "^1.9.7",
"@typescript-eslint/eslint-plugin": "^4.14.1",
"@typescript-eslint/parser": "^4.14.1",
"eslint": "^7.19.0",
"eslint-config-prettier": "^7.2.0",
"eslint-plugin-prettier": "^3.3.1",
"husky": "^4.3.0",
"jest": "^26.6.3",
"multiplerun": "^1.1.2",
"prettier": "2.2.1",
"ts-jest": "^26.5.0",
"ts-node": "^9.1.1",
"typescript": "^4.1.3"
},
"types": "./dist/index.d.ts"
}