tuitio-client-react/package.json

78 lines
2.4 KiB
JSON
Raw Normal View History

{
"name": "@flare/tuitio-react-client",
"version": "1.0.0",
2023-02-11 20:52:00 +02:00
"description": "Tuitio react client",
"main": "./dist/cjs/index.js",
"module": "./dist/esm/index.js",
"types": "./dist/esm/index.d.ts",
"scripts": {
2023-02-11 20:52:00 +02:00
"build": "npm run build:esm && npm run build:cjs",
"build:esm": "tsc",
"build:cjs": "tsc --module commonjs --outDir dist/cjs",
"test": "jest --config jestconfig.json",
2023-02-11 20:52:00 +02:00
"format": "prettier --write \"{src,tests}/**/*.{js,ts,jsx,tsx}\"",
"lint": "eslint \"{**/*,*}.{js,ts,jsx,tsx}\"",
"prepublishOnly": "npm test && npm run lint",
"prepush": "npm run build",
"preversion": "npm run lint",
2023-02-11 20:52:00 +02:00
"version": "npm run format",
"push": "npm publish",
"push:major": "npm run version:major && npm run push",
"push:minor": "npm run version:minor && npm run push",
"push:patch": "npm run version:patch && npm run push",
"version:major": "npm version major --no-git-tag-version",
"version:minor": "npm version minor --no-git-tag-version",
"version:patch": "npm version patch --no-git-tag-version"
},
"repository": {
"type": "git",
"url": "https://lab.code-rove.com/gitea/bricks/tuitio-react-client.git"
},
"keywords": [
"flare",
"tuitio-react-client"
],
"author": {
"name": "Tudor Stanciu",
"email": "tudor.stanciu94@gmail.com",
"url": "https://lab.code-rove.com/tsp"
},
2023-02-11 20:52:00 +02:00
"license": "MIT",
"bugs": {
"url": "https://lab.code-rove.com/gitea/bricks/tuitio-react-client/issues"
},
"homepage": "https://lab.code-rove.com/gitea/bricks/tuitio-react-client#readme",
"files": [
2023-02-11 20:52:00 +02:00
"dist",
"LICENSE",
"README.md"
],
2023-02-11 20:52:00 +02:00
"dependencies": {
"@flare/tuitio-client": "^1.0.3"
2023-02-11 20:52:00 +02:00
},
"peerDependencies": {
"react": "^16.14.0"
},
"devDependencies": {
2023-02-11 20:52:00 +02:00
"@testing-library/react": "^12.1.5",
2023-02-12 00:43:08 +02:00
"@testing-library/react-hooks": "^7.0.2",
"@types/jest": "^29.4.0",
2023-02-11 18:25:24 +02:00
"@types/react": "^18.0.27",
2023-02-11 20:52:00 +02:00
"@typescript-eslint/eslint-plugin": "^5.51.0",
"@typescript-eslint/parser": "^5.51.0",
"eslint": "^8.34.0",
"eslint-config-prettier": "^8.6.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.32.2",
"eslint-plugin-react-hooks": "^4.6.0",
"jest": "^29.4.2",
"jest-canvas-mock": "^2.4.0",
"jest-environment-jsdom": "^29.4.2",
2023-02-11 20:52:00 +02:00
"prettier": "^2.8.4",
"react": "^16.14.0",
"react-dom": "16.14.0",
"ts-jest": "^29.0.5",
"typescript": "^4.9.5"
}
}