@withvoid/melting-pot
Version:
A react utility library
76 lines (75 loc) • 2.13 kB
JSON
{
"name": "@withvoid/melting-pot",
"version": "1.6.0",
"description": "A react utility library",
"main": "dist/melting-pot.cjs.js",
"module": "dist/melting-pot.esm.js",
"scripts": {
"dev": "parcel dev/index.html",
"prebuild": "rm -rf dist",
"build": "rollup -c",
"docz:dev": "docz dev",
"docz:build": "docz build",
"lint:debug": "eslint --debug src/",
"lint:write": "eslint --debug src/ --fix",
"lint:stage": "eslint --fix",
"prettier": "prettier --write src/**/*.js docs/**/* dev/**/*",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/withvoid/melting-pot.git"
},
"keywords": [
"react",
"utility",
"react-hooks"
],
"author": "Adeel Imran <adeelimranr@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/withvoid/melting-pot/issues"
},
"homepage": "https://github.com/withvoid/melting-pot#readme",
"peerDependencies": {},
"devDependencies": {
"@babel/core": "^7.2.2",
"@babel/plugin-proposal-export-default-from": "^7.2.0",
"@babel/preset-env": "^7.2.3",
"@babel/preset-react": "^7.0.0",
"babel-eslint": "^10.0.1",
"docz": "^0.13.7",
"docz-theme-default": "^0.13.7",
"eslint": "^5.12.0",
"eslint-config-airbnb": "^17.1.0",
"eslint-plugin-babel": "^5.3.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-jsx-a11y": "^6.1.2",
"eslint-plugin-prettier": "^3.0.1",
"eslint-plugin-react": "^7.12.3",
"husky": "^1.3.1",
"lint-staged": "^8.1.0",
"parcel-bundler": "^1.11.0",
"prettier": "^1.15.3",
"prop-types": "^15.6.2",
"react": "^16.8.1",
"react-dom": "^16.8.1",
"rollup": "^1.0.2",
"rollup-plugin-babel": "^4.3.2",
"rollup-plugin-commonjs": "^9.2.0",
"rollup-plugin-node-resolve": "^4.0.0",
"rollup-plugin-size-snapshot": "^0.8.0",
"rollup-plugin-terser": "^4.0.3"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.js": [
"npm run lint:stage",
"git add"
]
}
}