This repository has been archived by the owner on Dec 25, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathpackage.json
57 lines (57 loc) · 1.63 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
{
"name": "cosmwasm",
"version": "0.27.1-1",
"description": "A wrapper package for all relevant cosmjs packages.",
"main": "build/index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "rm -rf ./build && tsc",
"lint": "eslint --max-warnings 0 \"./src/**/*.ts\""
},
"repository": {
"type": "git",
"url": "git+https://github.com/confio/cosmwasm.js.git"
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org"
},
"contributors": [
{
"name": "Simon Warta",
"email": "[email protected]"
},
{
"name": "Milan Steiner",
"email": "[email protected]"
}
],
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/confio/cosmwasm.js/issues"
},
"homepage": "https://github.com/confio/cosmwasm.js#readme",
"dependencies": {
"@cosmjs/amino": "0.27.1",
"@cosmjs/cosmwasm-stargate": "0.27.1",
"@cosmjs/crypto": "0.27.1",
"@cosmjs/encoding": "0.27.1",
"@cosmjs/faucet-client": "0.27.1",
"@cosmjs/proto-signing": "0.27.1",
"@cosmjs/stargate": "0.27.1"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^5.11.0",
"@typescript-eslint/parser": "^5.11.0",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.3.0",
"eslint-config-standard": "^16.0.3",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^5.2.0",
"prettier": "^2.5.1",
"typescript": "^4.5.5",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-simple-import-sort": "^7.0.0"
}
}