-
Notifications
You must be signed in to change notification settings - Fork 406
Expand file tree
/
Copy pathpackage.json
More file actions
74 lines (74 loc) · 2.28 KB
/
package.json
File metadata and controls
74 lines (74 loc) · 2.28 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
69
70
71
72
73
74
{
"name": "@cosmjs/encoding",
"version": "0.38.0",
"description": "Encoding helpers for blockchain projects",
"contributors": [
"IOV SAS <admin@iov.one>",
"Simon Warta <webmaster128@users.noreply.github.com>"
],
"license": "Apache-2.0",
"main": "build/index.js",
"types": "build/index.d.ts",
"exports": {
"types": "./build/index.d.ts",
"default": "./build/index.js"
},
"files": [
"build/",
"*.md",
"!*.spec.*",
"!**/karma-bundle/",
"!**/testdata/"
],
"repository": {
"type": "git",
"url": "https://github.com/cosmos/cosmjs/tree/main/packages/encoding"
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org"
},
"scripts": {
"docs": "typedoc",
"format": "prettier --write --log-level warn \"./src/**/*.ts\"",
"format-text": "prettier --write \"./*.md\"",
"test-node": "yarn node jasmine-testrunner.cjs",
"test-firefox": "yarn pack-web && karma start --single-run --browsers Firefox karma.conf.cjs",
"test-chrome": "yarn pack-web && karma start --single-run --browsers ChromeHeadless karma.conf.cjs",
"test": "yarn build-or-skip && yarn test-node",
"coverage": "nyc --reporter=text --reporter=lcov yarn test --quiet",
"build": "rm -rf ./build && tsc",
"build-or-skip": "[ -n \"${SKIP_BUILD:-}\" ] || yarn build",
"pack-web": "yarn build-or-skip && webpack --mode development --config webpack.web.config.cjs"
},
"dependencies": {
"@scure/base": "^2.0.0",
"base64-js": "^1.3.0",
"readonly-date-esm": "^2.0.0"
},
"devDependencies": {
"@istanbuljs/nyc-config-typescript": "^1.0.1",
"@types/base64-js": "^1.2.5",
"@types/jasmine": "^4",
"@types/karma-firefox-launcher": "^2",
"@types/karma-jasmine": "^4",
"@types/karma-jasmine-html-reporter": "^1",
"@types/node": "*",
"glob": "^13.0.0",
"jasmine": "^4",
"jasmine-spec-reporter": "^6",
"karma": "^6.3.14",
"karma-chrome-launcher": "^3.1.0",
"karma-firefox-launcher": "^2.1.0",
"karma-jasmine": "^5",
"karma-jasmine-html-reporter": "^1.5.4",
"nyc": "^17.1.0",
"prettier": "^3.6.2",
"ses": "^1.13.0",
"source-map-support": "^0.5.19",
"typedoc": "^0.28",
"typescript": "~5.9",
"webpack": "^5.76.0",
"webpack-cli": "^4.6.0"
}
}