-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
56 lines (56 loc) · 1.72 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
{
"name": "finschia-js-monorepo-root",
"description": "Transaction codec and client to communicate with any finschia blockchain",
"private": true,
"author": "Ethan Frey <[email protected]>",
"license": "Apache-2.0",
"main": "build/index.js",
"types": "build/index.d.ts",
"files": [
"build/",
"*.md",
"!*.spec.*",
"!**/testdata/"
],
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org"
},
"workspaces": [
"packages/*"
],
"scripts": {
"format": "yarn workspaces run format",
"format-text": "prettier --write \"./*.md\" \"./docs/*.md\" && yarn workspaces run format-text",
"format-shell": "shfmt -w scripts packages",
"lint": "yarn workspaces run lint",
"lint-fix": "yarn workspaces run lint-fix",
"test": "yarn workspaces run test",
"test-firefox": "yarn workspaces run test-firefox",
"test-chrome": "yarn workspaces run test-chrome",
"coverage": "yarn workspaces run coverage",
"build": "yarn workspaces run build",
"docs": "yarn workspaces run docs",
"pack-web": "yarn workspaces run pack-web",
"publish-next": "yarn workspaces run publish-next",
"publish-latest": "yarn workspaces run publish-latest"
},
"devDependencies": {
"@cosmjs/crypto": "^0.31.0",
"@cosmjs/encoding": "^0.31.0",
"@cosmjs/proto-signing": "^0.31.0",
"@cosmjs/stargate": "^0.31.0",
"@finschia/finschia": "0.10.1",
"eslint": "^7.5",
"karma-chrome-launcher": "^3.1.0",
"karma-jasmine": "^4.0.1",
"karma-spec-reporter": "^0.0.33",
"karma-typescript": "^5.5.3",
"prettier": "^2.4.1",
"ts-node": "^8",
"typescript": "~4.4"
},
"dependencies": {
"cosmjs-types": "^0.8.0"
}
}