-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
executable file
·100 lines (100 loc) · 2.83 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
{
"name": "@csli/repl",
"type": "module",
"module": "es2022",
"version": "0.1.3",
"description": "a REPL connecting to Cosmos blockchains using the @cosmjs suite of libraries",
"contributors": [
"Simon Warta",
"Mike Purvis @mikedotexe"
],
"keywords": [
"cosmos",
"blockchain",
"repl",
"csli",
"cosmwasm",
"cosmjs"
],
"bugs": {
"url": "https://github.com/csli-tools/repl/issues",
"email": "mikedotexe@gmail.com"
},
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "https://github.com/csli-tools/repl"
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org"
},
"scripts": {
"format": "prettier --write --loglevel warn \"./src/**/*.ts\"",
"format-examples": "prettier --write --loglevel warn \"./examples/**/*.ts\"",
"format-text": "prettier --write \"./*.md\"",
"lint": "eslint --max-warnings 0 \"./**/*.ts\" \"./*.js\"",
"lint-fix": "eslint --fix --max-warnings 0 \"./**/*.ts\" \"./*.js\"",
"start": "node --experimental-modules --es-module-specifier-resolution=node bin/cslir",
"selftest": "./bin/cslir --selftest",
"test-node": "npm run node jasmine-testrunner.js",
"test": "npm run test-node",
"coverage": "nyc --reporter=text --reporter=lcov npm run test --quiet"
},
"bin": {
"cslir": "bin/cslir.mjs"
},
"files": [
"src/",
"*.md",
"tsconfig_repl.json",
"!*.spec.*",
"!**/testdata/"
],
"dependencies": {
"@cosmjs/amino": "0.28.11",
"@cosmjs/cosmwasm-stargate": "0.28.11",
"@cosmjs/crypto": "0.28.11",
"@cosmjs/encoding": "0.28.11",
"@cosmjs/faucet-client": "0.28.11",
"@cosmjs/math": "0.28.11",
"@cosmjs/proto-signing": "0.28.11",
"@cosmjs/stargate": "0.28.11",
"@cosmjs/tendermint-rpc": "0.28.11",
"@cosmjs/utils": "0.28.11",
"axios": "^0.21.2",
"babylon": "^6.18.0",
"chalk": "^4",
"cosmjs-types": "^0.5.0",
"diff": "^4",
"minify": "^9.1.0",
"recast": "^0.20",
"shelljs": "^0.8.5",
"ts-node": "^8",
"typescript": "~4.6",
"yargs": "^15.3.1"
},
"devDependencies": {
"@istanbuljs/nyc-config-typescript": "^1.0.1",
"@types/babylon": "^6.16.3",
"@types/diff": "^4",
"@types/eslint-plugin-prettier": "^3",
"@types/jasmine": "^4",
"@types/node": "^15.0.1",
"@types/yargs": "^15.0.4",
"@typescript-eslint/eslint-plugin": "^5.13.0",
"@typescript-eslint/parser": "^5.13.0",
"eslint": "^7.5",
"eslint-config-prettier": "^8.3.0",
"eslint-import-resolver-node": "^0.3.4",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-prettier": "^3.4.0",
"eslint-plugin-simple-import-sort": "^7.0.0",
"esm": "^3.2.25",
"jasmine": "^4",
"jasmine-spec-reporter": "^6",
"nyc": "^15.1.0",
"prettier": "^2.4.1",
"source-map-support": "^0.5.19"
}
}