mirror of
https://github.com/mattermost/mattermost.git
synced 2026-02-11 23:03:45 -05:00
* Update ESLint and plugins * Move most channels-specific ESLint configuration into ESLint plugin * Add ESLint to types and client packages * Add ESLint to components package
45 lines
1.1 KiB
JSON
45 lines
1.1 KiB
JSON
{
|
|
"name": "@mattermost/client",
|
|
"version": "9.3.0",
|
|
"description": "JavaScript/TypeScript client for Mattermost",
|
|
"keywords": [
|
|
"mattermost"
|
|
],
|
|
"homepage": "https://github.com/mattermost/mattermost/tree/master/webapp/platform/client#readme",
|
|
"license": "MIT",
|
|
"files": [
|
|
"lib"
|
|
],
|
|
"main": "lib/index.js",
|
|
"types": "lib/index.d.ts",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "github:mattermost/mattermost",
|
|
"directory": "webapp/platform/client"
|
|
},
|
|
"dependencies": {
|
|
"form-data": "^4.0.0"
|
|
},
|
|
"devDependencies": {
|
|
"@types/jest": "28.1.8",
|
|
"jest": "27.1.0",
|
|
"typescript": "^5.0.0"
|
|
},
|
|
"peerDependencies": {
|
|
"@mattermost/types": "9.3.0",
|
|
"typescript": "^4.3.0 || ^5.0.0"
|
|
},
|
|
"peerDependenciesMeta": {
|
|
"typescript": {
|
|
"optional": true
|
|
}
|
|
},
|
|
"scripts": {
|
|
"build": "tsc --build tsconfig.build.json --verbose",
|
|
"check": "eslint --ext .js,.jsx,.tsx,.ts ./src --quiet",
|
|
"run": "tsc --watch --preserveWatchOutput",
|
|
"test": "jest",
|
|
"test-ci": "jest --ci --forceExit --detectOpenHandles --maxWorkers=100%",
|
|
"clean": "rm -rf lib node_modules *.tsbuildinfo"
|
|
}
|
|
}
|