2022-09-07 11:20:27 +03:00
{
"name" : "@flare/react-hooks" ,
2023-10-31 02:55:22 +02:00
"version" : "1.1.0" ,
"description" : "react-hooks is an npm package that brings together multiple react hooks useful both in the development of the ecosystem in my home lab and for the general public." ,
"main" : "./dist/cjs/index.js" ,
"module" : "./dist/esm/index.js" ,
"types" : "./dist/esm/index.d.ts" ,
2022-09-07 11:20:27 +03:00
"scripts" : {
2023-10-31 02:55:22 +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" ,
"format" : "prettier --write \"{src,tests}/**/*.{js,ts,jsx,tsx}\"" ,
"lint" : "eslint \"{**/*,*}.{js,ts,jsx,tsx}\"" ,
"prepublishOnly" : "npm test && npm run lint" ,
2022-09-07 11:20:27 +03:00
"prepush" : "npm run build" ,
2023-10-31 02:55:22 +02:00
"preversion" : "npm run lint" ,
"version" : "npm run format" ,
"push" : "npm publish" ,
2022-09-07 11:20:27 +03:00
"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"
} ,
2023-10-31 02:55:22 +02:00
"repository" : {
"type" : "git" ,
"url" : "https://lab.code-rove.com/gitea/bricks/react-hooks"
2022-09-07 11:20:27 +03:00
} ,
2023-10-31 02:55:22 +02:00
"keywords" : [
"flare" ,
"react-hooks"
] ,
"author" : {
"name" : "Tudor Stanciu" ,
"email" : "tudor.stanciu94@gmail.com" ,
"url" : "https://lab.code-rove.com/tsp"
} ,
"license" : "MIT" ,
"bugs" : {
"url" : "https://lab.code-rove.com/gitea/bricks/react-hooks/issues"
} ,
"homepage" : "https://lab.code-rove.com/gitea/bricks/react-hooks#readme" ,
"files" : [
"dist" ,
"LICENSE" ,
"README.md"
] ,
2022-09-07 11:20:27 +03:00
"peerDependencies" : {
"react" : "^18.2.0" ,
2023-10-31 02:55:22 +02:00
"react-dom" : "^18.2.0"
2022-09-07 11:20:27 +03:00
} ,
2023-10-31 02:55:22 +02:00
"devDependencies" : {
"@testing-library/react" : "^12.1.5" ,
"@testing-library/react-hooks" : "^7.0.2" ,
"@types/jest" : "^29.4.0" ,
"@types/react" : "^18.0.27" ,
"@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-environment-jsdom" : "^29.4.2" ,
"prettier" : "^2.8.4" ,
"react" : "^16.14.0" ,
"react-dom" : "16.14.0" ,
"ts-jest" : "^29.0.5" ,
"typescript" : "^4.9.5"
2022-09-07 11:20:27 +03:00
} ,
"publishConfig" : {
2022-12-28 18:11:33 +02:00
"registry" : "https://lab.code-rove.com/public-node-registry"
2022-09-07 11:20:27 +03:00
}
}