cosmjs/package.json

78 lines
2.2 KiB
JSON
Raw Normal View History

2020-01-22 09:41:48 +01:00
{
"name": "cosm-js-monorepo-root",
2020-01-22 09:54:23 +01:00
"description": "Transaction codec and client to communicate with any wasmd blockchain",
"private": true,
2020-01-22 09:54:23 +01:00
"author": "Ethan Frey <ethanfrey@users.noreply.github.com>",
2020-01-22 09:41:48 +01:00
"license": "Apache-2.0",
"main": "build/index.js",
"types": "types/index.d.ts",
"files": [
"build/",
"types/",
"*.md",
"!*.spec.*",
"!**/testdata/"
],
"repository": {
"type": "git",
2020-01-22 09:54:23 +01:00
"url": "https://github.com/confio/cosm-js"
2020-01-22 09:41:48 +01:00
},
"publishConfig": {
"access": "public"
},
"workspaces": [
"packages/*"
],
2020-01-22 09:41:48 +01:00
"scripts": {
"format": "lerna run format",
"format-text": "prettier --write --prose-wrap always --print-width 80 \"./*.md\" \"./docs/**/*.md\" \"./scripts/**/*.{json,md}\" && lerna run format-text",
"lint": "lerna run lint",
"lint-fix": "lerna run lint-fix",
"test": "lerna run test",
"build": "lerna run build",
"docs": "lerna run docs"
2020-01-22 09:41:48 +01:00
},
"dependencies": {
"@iov/bcp": "^2.0.0-alpha.7",
"@iov/crypto": "^2.0.0-alpha.7",
"@iov/encoding": "^2.0.0-alpha.7",
"@iov/stream": "^2.0.0-alpha.7",
"@tendermint/amino-js": "^0.7.0-alpha.1",
"axios": "^0.19.0",
"fast-deep-equal": "^3.1.1",
"readonly-date": "^1.0.0",
"xstream": "^11.11.0"
},
"devDependencies": {
2020-01-22 09:54:23 +01:00
"@types/jasmine": "^3.3.7",
"@types/memdown": "^3.0.0",
"@typescript-eslint/eslint-plugin": "^2.10.0",
"@typescript-eslint/parser": "^2.10.0",
"eslint": "^6.7.2",
"eslint-config-prettier": "^6.2.0",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-prettier": "^3.1.0",
"eslint-plugin-simple-import-sort": "^4.0.0",
"jasmine": "^3.3.1",
"jasmine-spec-reporter": "^4.2.1",
"karma": "^4.1.0",
"karma-chrome-launcher": "^2.2.0",
"karma-edge-launcher": "^0.4.2",
"karma-firefox-launcher": "^1.1.0",
"karma-jasmine": "^2",
"karma-jasmine-html-reporter": "^1.4",
"karma-safari-launcher": "^1.0.0",
2020-01-28 22:52:28 +01:00
"lerna": "^3.20.2",
2020-01-22 09:54:23 +01:00
"memdown": "^4.0.0",
"prettier": "^1.19.1",
"shx": "^0.3.2",
"source-map-support": "^0.5.6",
"tslint": "^5.19.0",
"tslint-config-prettier": "^1.13.0",
"tslint-immutable": "^5.5.2",
"typescript": "~3.7",
"webpack": "^4.12.0",
"webpack-cli": "^3.3.8"
2020-01-22 09:41:48 +01:00
}
}