* Run tests for all web app packages in CI * Test specific packages instead of all of them * Revert back to using test-ci scripts and rely on Jest to count the number of CPU cores * Revert more changes made to the web app CI tests * Fix path to client package tests
46 строки
1.1 KiB
JSON
46 строки
1.1 KiB
JSON
{
|
|
"name": "@mattermost/client",
|
|
"version": "7.9.0",
|
|
"description": "JavaScript/TypeScript client for Mattermost",
|
|
"keywords": [
|
|
"mattermost"
|
|
],
|
|
"homepage": "https://github.com/mattermost/mattermost-webapp/tree/master/packages/client#readme",
|
|
"license": "MIT",
|
|
"files": [
|
|
"lib"
|
|
],
|
|
"main": "lib/index.js",
|
|
"types": "lib/index.d.ts",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "github:mattermost/mattermost-webapp",
|
|
"directory": "packages/client"
|
|
},
|
|
"dependencies": {
|
|
"form-data": "4.0.0"
|
|
},
|
|
"devDependencies": {
|
|
"@babel/preset-typescript": "7.21.0",
|
|
"isomorphic-fetch": "3.0.0",
|
|
"jest": "*",
|
|
"nock": "*"
|
|
},
|
|
"peerDependencies": {
|
|
"@mattermost/types": "*",
|
|
"typescript": "^4.3"
|
|
},
|
|
"peerDependenciesMeta": {
|
|
"typescript": {
|
|
"optional": true
|
|
}
|
|
},
|
|
"scripts": {
|
|
"build": "tsc --build --verbose",
|
|
"run": "tsc --watch --preserveWatchOutput",
|
|
"test": "jest",
|
|
"test-ci": "jest --ci --forceExit --detectOpenHandles --maxWorkers=100%",
|
|
"clean": "rm -rf lib node_modules tsconfig.tsbuildinfo"
|
|
}
|
|
}
|