UNPKG

2.14 kBJSONView Raw
1{
2 "name": "@withvoid/melting-pot",
3 "version": "1.2.4",
4 "description": "A react utility library",
5 "main": "dist/melting-pot.cjs.js",
6 "module": "dist/melting-pot.esm.js",
7 "scripts": {
8 "dev": "parcel dev/index.html",
9 "prebuild": "rm -rf dist",
10 "build": "rollup -c",
11 "docz:dev": "docz dev",
12 "docz:build": "docz build",
13 "now-build": "npm run docz:build",
14 "lint:debug": "eslint --debug src/",
15 "lint:write": "eslint --debug src/ --fix",
16 "lint:stage": "eslint --fix",
17 "prettier": "prettier --write src/**/*.js docs/**/*.js dev/**/*",
18 "test": "echo \"Error: no test specified\" && exit 1"
19 },
20 "repository": {
21 "type": "git",
22 "url": "git+https://github.com/withvoid/melting-pot.git"
23 },
24 "keywords": [
25 "react",
26 "utility",
27 "react-hooks"
28 ],
29 "author": "Adeel Imran <adeelimranr@gmail.com>",
30 "license": "MIT",
31 "bugs": {
32 "url": "https://github.com/withvoid/melting-pot/issues"
33 },
34 "homepage": "https://github.com/withvoid/melting-pot#readme",
35 "peerDependencies": {
36 "prop-types": "^15.6.2",
37 "react": "^16.8.0-alpha.1",
38 "react-dom": "^16.8.0-alpha.1"
39 },
40 "devDependencies": {
41 "@babel/core": "^7.2.2",
42 "@babel/plugin-proposal-export-default-from": "^7.2.0",
43 "@babel/preset-env": "^7.2.3",
44 "@babel/preset-react": "^7.0.0",
45 "babel-eslint": "^10.0.1",
46 "docz": "^0.13.7",
47 "docz-theme-default": "^0.13.7",
48 "eslint": "^5.12.0",
49 "eslint-config-airbnb": "^17.1.0",
50 "eslint-plugin-babel": "^5.3.0",
51 "eslint-plugin-import": "^2.14.0",
52 "eslint-plugin-jsx-a11y": "^6.1.2",
53 "eslint-plugin-prettier": "^3.0.1",
54 "eslint-plugin-react": "^7.12.3",
55 "husky": "^1.3.1",
56 "lint-staged": "^8.1.0",
57 "parcel-bundler": "^1.11.0",
58 "prettier": "^1.15.3",
59 "rollup": "^1.0.2",
60 "rollup-plugin-babel": "^4.3.2",
61 "rollup-plugin-commonjs": "^9.2.0",
62 "rollup-plugin-node-resolve": "^4.0.0",
63 "rollup-plugin-terser": "^4.0.3"
64 },
65 "husky": {
66 "hooks": {
67 "pre-commit": "lint-staged"
68 }
69 },
70 "lint-staged": {
71 "*.js": [
72 "npm run lint:stage",
73 "git add"
74 ]
75 }
76}