UNPKG

2.77 kBJSONView Raw
1{
2 "name": "beautiful-react-hooks",
3 "version": "0.23.1",
4 "description": "A collection of beautiful (and hopefully useful) React hooks to speed-up your components and hooks development",
5 "main": "dist/index.js",
6 "scripts": {
7 "lint": "eslint --ext .js src/",
8 "build-js": "cross-env NODE_ENV=production gulp -f ./scripts/build.js",
9 "build": "npm run build-js && npm run docs",
10 "test": "cross-env NODE_ENV=test nyc mocha --recursive --exit \"./src/**/*.spec.+(js|jsx)\"",
11 "test:watch": "npm run test -- --watch",
12 "start": "npx styleguidist server --config docs/styleguidist/styleguidist.config.js --open",
13 "docs": "npx styleguidist build --config docs/styleguidist/styleguidist.config.js"
14 },
15 "files": [
16 "dist/**",
17 "index.d.ts"
18 ],
19 "types": "index.d.ts",
20 "repository": {
21 "type": "git",
22 "url": "git+https://github.com/beautifulinteractions/beautiful-react-hooks.git"
23 },
24 "author": {
25 "name": "Antonio Russo",
26 "email": "antonio@beautifulinteractions.com"
27 },
28 "license": "MIT",
29 "bugs": {
30 "url": "https://github.com/beautifulinteractions/beautiful-react-hooks/issues"
31 },
32 "homepage": "https://beautifulinteractions.github.io/beautiful-react-hooks/",
33 "dependencies": {
34 "lodash.debounce": "^4.0.8",
35 "lodash.throttle": "^4.1.1"
36 },
37 "peerDependencies": {
38 "react": ">=16.12.0",
39 "react-dom": ">=16.12.0"
40 },
41 "devDependencies": {
42 "@babel/core": "^7.8.4",
43 "@babel/polyfill": "^7.8.3",
44 "@babel/preset-env": "^7.8.4",
45 "@babel/preset-react": "^7.8.3",
46 "@babel/register": "^7.8.3",
47 "@testing-library/react": "^9.4.0",
48 "@testing-library/react-hooks": "^3.2.1",
49 "babel-eslint": "^10.0.3",
50 "babel-loader": "^8.0.6",
51 "babel-plugin-istanbul": "^6.0.0",
52 "babel-plugin-transform-require-ignore": "^0.1.1",
53 "beautiful-react-ui": "^0.54.0",
54 "chai": "^4.2.0",
55 "cross-env": "^7.0.0",
56 "css-loader": "^3.4.2",
57 "del": "^5.1.0",
58 "eslint": "^6.8.0",
59 "eslint-config-airbnb": "^18.0.1",
60 "eslint-plugin-chai-expect": "^2.1.0",
61 "eslint-plugin-import": "^2.20.1",
62 "eslint-plugin-jsx-a11y": "^6.2.3",
63 "eslint-plugin-react": "^7.18.3",
64 "eslint-plugin-react-hooks": "^2.4.0",
65 "glob": "^7.1.6",
66 "gulp": "^4.0.2",
67 "gulp-babel": "^8.0.0",
68 "gulp-sourcemaps": "^2.6.5",
69 "husky": "^4.2.3",
70 "jsdoc-to-markdown": "^5.0.3",
71 "jsdom": "^16.2.0",
72 "jsdom-global": "^3.0.2",
73 "mocha": "^7.0.1",
74 "mock-local-storage": "1.1.11",
75 "nyc": "^15.0.0",
76 "react": "^16.12.0",
77 "react-dom": "^16.12.0",
78 "react-styleguidist": "^10.6.2",
79 "react-test-renderer": "^16.12.0",
80 "sinon": "^9.0.0",
81 "style-loader": "^1.1.3",
82 "url-loader": "^3.0.0",
83 "webpack": "^4.41.6"
84 }
85}