-
Notifications
You must be signed in to change notification settings - Fork 39
/
package.json
103 lines (103 loc) · 2.98 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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
{
"name": "@terra-money/terrain",
"description": "Interchain development environment",
"version": "0.8.0",
"__comment": "^ update template package.json to the same version when publish",
"author": "terra-money",
"bugs": "https://github.com/terra-money/terrain/issues",
"homepage": "https://github.com/terra-money/terrain",
"repository": "https://github.com/terra-money/terrain",
"bin": {
"terrain": "./bin/run"
},
"keywords": [
"oclif"
],
"license": "MIT",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"oclif": {
"commands": "./lib/commands",
"helpClass": "./lib/lib/help",
"bin": "terrain",
"plugins": [
"@oclif/plugin-help",
"@oclif/plugin-not-found"
]
},
"scripts": {
"use": "node ./bin/run",
"watch": "tsc-watch --onSuccess \"npm run build:oclif\"",
"prepack:use": "npm run prepack && npm run use",
"build:oclif": "oclif-dev manifest && oclif-dev readme",
"prepack": "rm -rf lib && tsc -b && npm run build:oclif",
"postpack": "rm -f oclif.manifest.json",
"test": "jest",
"test:watch": "jest --watch",
"lint": "eslint . --ext .ts --config .eslintrc.js",
"fixlint": "eslint . --ext .ts --config .eslintrc.js --fix",
"version": "oclif-dev readme && git add README.md"
},
"dependencies": {
"@oclif/command": "^1.8.0",
"@oclif/config": "^1.17.0",
"@oclif/core": "^1.0.11",
"@oclif/plugin-help": "^5.1.12",
"@oclif/plugin-not-found": "^2.3.1",
"@octalmage/terra-cosmwasm-typescript-gen": "^0.2.0",
"@rauschma/stringio": "^1.4.0",
"@terra-money/feather.js": "^1.0.4",
"@terra-money/template-scaffolding": "1.0.1",
"adm-zip": "^0.5.9",
"axios": "^1.4.0",
"boxen": "^5.1.2",
"case": "^1.6.3",
"chalk": "^4.0.0",
"cli-ux": "^5.6.3",
"dedent": "^0.7.0",
"fs-extra": "^8.1.0",
"hyperlinker": "^1.0.0",
"ramda": "^0.26.1",
"semver": "^7.3.7",
"superagent": "^6.1.0",
"terminal-overwrite": "^2.0.1",
"toml": "^3.0.0",
"ts-node": "^10.9.1",
"tslib": "^1.14.1",
"yaml": "^1.10.2"
},
"devDependencies": {
"@babel/core": "^7.16.0",
"@babel/preset-env": "^7.16.0",
"@babel/preset-typescript": "^7.16.0",
"@oclif/dev-cli": "^1.26.10",
"@types/adm-zip": "^0.4.34",
"@types/dedent": "^0.7.0",
"@types/fs-extra": "^9.0.13",
"@types/jest": "^27.5.2",
"@types/node": "^10.17.60",
"@types/ramda": "^0.26.0",
"@types/semver": "^7.3.12",
"@types/superagent": "^4.1.13",
"@typescript-eslint/eslint-plugin": "^5.18.0",
"@typescript-eslint/parser": "^5.18.0",
"babel-jest": "^27.3.1",
"eslint": "^8.12.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-jest": "^26.6.0",
"jest": "^27.3.1",
"prettier": "2.4.1",
"tsc-watch": "^5.0.3",
"typescript": "^5.0.4"
},
"engines": {
"node": ">=12.0.0"
},
"files": [
"/bin",
"/lib",
"/npm-shrinkwrap.json",
"/oclif.manifest.json"
]
}