react-hook-layout
Version:
Layout management in React.
67 lines (66 loc) • 1.55 kB
JSON
{
"name": "react-hook-layout",
"version": "1.0.2",
"description": "Layout management in React.",
"main": "./lib/index.js",
"scripts": {
"build": "babel src -d lib",
"build:docs": "cd ./storybook && npm run build && cd ..",
"lint": "npx eslint ./src",
"test:lib": "LIB=1 jest",
"test:watch": "jest --watchAll",
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ytiurin/react-hook-layout.git"
},
"keywords": [
"hooks",
"layout",
"react-hooks",
"react"
],
"author": "Eugene Tiurin",
"license": "ISC",
"bugs": {
"url": "https://github.com/ytiurin/react-hook-layout/issues"
},
"homepage": "https://github.com/ytiurin/react-hook-layout#readme",
"devDependencies": {
"@babel/cli": "^7.13.14",
"@babel/core": "^7.9.0",
"@babel/preset-env": "^7.9.0",
"@babel/preset-react": "^7.9.4",
"@testing-library/react": "^10.0.2",
"eslint": "^6.8.0",
"jest": "^26.6.3",
"react": "^16.8.6",
"react-dom": "^16.8.6"
},
"peerDependencies": {
"react": ">=16.8"
},
"files": [
"lib"
],
"babel": {
"presets": [
"@babel/preset-env",
"@babel/preset-react"
],
"sourceMaps": "both"
},
"husky": {
"hooks": {
"pre-commit": "npm run lint && npm run test",
"pre-publish": "npm run build"
}
},
"jest": {
"verbose": true,
"watchPathIgnorePatterns": [
"<rootDir>/node_modules/"
]
}
}