forked from cosmos/cosmjs
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 2.66 KB
/
package.json
File metadata and controls
68 lines (68 loc) · 2.66 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
{
"name": "cosmjs-monorepo-root",
"description": "Transaction codec and client to communicate with any wasmd blockchain",
"private": true,
"version": "0.33.0",
"author": "Ethan Frey <ethanfrey@users.noreply.github.com>",
"license": "Apache-2.0",
"main": "build/index.js",
"types": "build/index.d.ts",
"files": [
"build/",
"*.md",
"!*.spec.*",
"!**/testdata/"
],
"repository": {
"type": "git",
"url": "git+https://github.com/ezstaking/cosmjs.git#own-main"
},
"publishConfig": {
"access": "public",
"registry": "https://npm.pkg.github.com"
},
"workspaces": [
"packages/*"
],
"scripts": {
"format": "yarn workspaces foreach --all --topological-dev --parallel --verbose run format",
"format-text": "prettier --write \"./*.md\" \"./docs/*.md\" && yarn workspaces foreach --all --topological-dev --parallel --verbose run format-text",
"format-shell": "shfmt -w scripts packages",
"lint": "yarn workspaces foreach --all --topological-dev --parallel --verbose run lint",
"lint-fix": "yarn workspaces foreach --all --topological-dev --parallel --verbose run lint-fix",
"test": "yarn workspaces foreach --all --topological-dev --parallel --verbose run test",
"test-firefox": "yarn workspaces foreach --all --topological-dev --parallel --verbose run test-firefox",
"test-chrome": "yarn workspaces foreach --all --topological-dev --parallel --verbose run test-chrome",
"coverage": "yarn workspaces foreach --all --topological-dev --parallel --verbose run coverage",
"build": "yarn workspaces foreach --all --topological-dev --parallel --verbose run build",
"docs": "yarn workspaces foreach --all --topological-dev --parallel --verbose run docs",
"pack-web": "yarn workspaces foreach --all --topological-dev --parallel --verbose run pack-web",
"release": "release-git",
"publish-next": "yarn workspaces foreach --all --no-private exec yarn npm publish --tag next",
"publish-latest": "yarn workspaces foreach --all --no-private exec yarn npm publish"
},
"devDependencies": {
"@ezstaking/amino": "workspace:^",
"@ezstaking/cosmwasm-stargate": "workspace:^",
"@ezstaking/crypto": "workspace:^",
"@ezstaking/encoding": "workspace:^",
"@ezstaking/proto-signing": "workspace:^",
"@ezstaking/stargate": "workspace:^",
"@release-git-plugins/workspaces": "^3.2.0",
"eslint": "^7.5",
"prettier": "^2.8.8",
"release-git": "^16.1.0",
"typescript": "~4.9"
},
"release-git": {
"plugins": {
"@release-git-plugins/workspaces": {
"workspaces": [
"packages/*"
]
}
},
"npm": false
},
"packageManager": "yarn@4.6.0"
}