cosmjs/package.json

61 lines
1.7 KiB
JSON
Raw Normal View History

2020-01-22 09:41:48 +01:00
{
2020-02-06 10:03:34 +01:00
"name": "cosmwasm-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-02-06 10:03:34 +01:00
"url": "https://github.com/confio/cosmwasm-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
},
"devDependencies": {
2020-01-22 09:54:23 +01:00
"@types/jasmine": "^3.3.7",
2020-02-11 17:50:11 +01:00
"@typescript-eslint/eslint-plugin": "^2.19.2",
"@typescript-eslint/parser": "^2.19.2",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.11.0",
2020-02-19 09:30:26 +01:00
"eslint-plugin-functional": "^3.0.1",
2020-02-11 17:50:11 +01:00
"eslint-plugin-import": "^2.20.1",
2020-04-17 08:36:40 +02:00
"eslint-plugin-prettier": "^3.1.3",
2020-02-11 17:50:11 +01:00
"eslint-plugin-simple-import-sort": "^5.0.1",
2020-01-22 09:54:23 +01:00
"jasmine": "^3.3.1",
"jasmine-spec-reporter": "^4.2.1",
2020-04-16 20:35:39 +02:00
"karma": "^5",
"karma-chrome-launcher": "^3",
2020-01-22 09:54:23 +01:00
"karma-firefox-launcher": "^1.1.0",
"karma-jasmine": "^3",
2020-01-22 09:54:23 +01:00
"karma-jasmine-html-reporter": "^1.4",
2020-01-28 22:52:28 +01:00
"lerna": "^3.20.2",
"prettier": "^2.0.5",
2020-01-22 09:54:23 +01:00
"shx": "^0.3.2",
"source-map-support": "^0.5.6",
"typescript": "~3.7",
"webpack": "^4.12.0",
"webpack-cli": "^3.3.8"
2020-01-22 09:41:48 +01:00
}
}