forked from cosmos/cosmjs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
67 lines (67 loc) · 1.91 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
{
"name": "cosmjs-monorepo-root",
"description": "Transaction codec and client to communicate with any wasmd blockchain",
"private": true,
"author": "Ethan Frey <ethanfrey@users.noreply.github.com>",
"license": "Apache-2.0",
"main": "build/index.js",
"types": "types/index.d.ts",
"files": [
"build/",
"types/",
"*.md",
"!*.spec.*",
"!**/testdata/"
],
"repository": {
"type": "git",
"url": "https://github.com/CosmWasm/cosmjs"
},
"publishConfig": {
"access": "public"
},
"workspaces": [
"packages/*"
],
"scripts": {
"format": "lerna run format",
"format-text": "prettier --write --prose-wrap always --print-width 80 \"./*.md\" && lerna run format-text",
"format-shell": "shfmt -w scripts packages",
"lint": "lerna run lint",
"lint-fix": "lerna run lint-fix",
"test": "lerna run test",
"test-firefox": "lerna run test-firefox",
"test-chrome": "lerna run test-chrome",
"coverage": "lerna run coverage",
"build": "lerna run build",
"docs": "lerna run docs"
},
"devDependencies": {
"@istanbuljs/nyc-config-typescript": "^1.0.1",
"@types/jasmine": "^3.3.7",
"@typescript-eslint/eslint-plugin": "^4.5.0",
"@typescript-eslint/parser": "^4.5.0",
"eslint": "^7.5",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-prettier": "^3.1.3",
"eslint-plugin-simple-import-sort": "^5.0.1",
"jasmine": "^3.5",
"jasmine-core": "^3.5",
"jasmine-spec-reporter": "^6",
"karma": "^5.2.2",
"karma-chrome-launcher": "^3",
"karma-firefox-launcher": "^1.1.0",
"karma-jasmine": "^3",
"karma-jasmine-html-reporter": "^1.4",
"lerna": "^3.22.1",
"nyc": "^15.1.0",
"prettier": "^2.0.5",
"shx": "^0.3.2",
"source-map-support": "^0.5.19",
"typedoc": "^0.19",
"typescript": "~4.0",
"webpack": "^4.43.0",
"webpack-cli": "^3.3.12"
}
}