generated from binodswain/react-lib-template
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
108 lines (108 loc) · 3.3 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
{
"name": "react-overlay-component",
"version": "1.0.6",
"main": "dist/index.js",
"module": "dist/index.es.js",
"description": "npm package to render overlay/modal with backdrop",
"scripts": {
"test": "jest --verbose ./test",
"lint:js": "eslint src/*.js",
"prebuild": "npm-run-all lint:js clean",
"build": "cross-env NODE_ENV=production rollup -c",
"start": "rollup -c -w",
"clean": "rimraf build dist",
"format": "prettier --write \"**/*.{js,jsx,json,md}\"",
"build:website": "cd website && npm run build",
"package:patch": "npx standard-version --release-as patch --skip.changelog",
"package:minor": "npx standard-version --release-as minor --skip.changelog",
"package:major": "npx standard-version --release-as major --skip.changelog"
},
"files": [
"dist",
"LICENSE",
"package.json",
"README.md"
],
"repository": {
"type": "git",
"url": "git+https://github.com/binodswain/react-overlay-component.git"
},
"jest": {
"moduleNameMapper": {
"\\.(css|less|sass|scss)$": "identity-obj-proxy",
".+\\.(svg|png|jpg|ttf|woff|woff2)$": "jest-transform-stub"
}
},
"peerDependencies": {
"prop-types": ">=15.5.4",
"react": ">=15.0.0",
"react-dom": ">=15.0.0"
},
"devDependencies": {
"@babel/cli": "^7.5.5",
"@babel/core": "^7.4.5",
"@babel/plugin-proposal-class-properties": "^7.5.5",
"@babel/plugin-proposal-object-rest-spread": "^7.5.5",
"@babel/preset-env": "^7.4.5",
"@babel/preset-react": "^7.0.0",
"babel-eslint": "^10.1.0",
"cross-env": "^7.0.2",
"eslint": "^6.8.0",
"eslint-plugin-react": "^7.19.0",
"husky": "^4.2.5",
"identity-obj-proxy": "^3.0.0",
"jest": "^24.9.0",
"jest-transform-stub": "^2.0.0",
"lint-staged": "^10.1.3",
"npm-run-all": "^4.1.5",
"prettier": "^2.0.4",
"prettier-eslint-cli": "^5.0.0",
"prop-types": "^15.5.4",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"react-test-renderer": "^16.12.0",
"rimraf": "^3.0.0",
"rollup": "^1.27.14",
"rollup-plugin-babel": "^4.3.3",
"rollup-plugin-commonjs": "^10.1.0",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-peer-deps-external": "^2.2.0",
"rollup-plugin-postcss": "^2.0.3",
"rollup-plugin-svg": "^2.0.0",
"rollup-plugin-terser": "^5.3.0",
"stylelint-prettier": "^1.1.2"
},
"engines": {
"node": ">=8",
"npm": ">=5"
},
"keywords": [
"react",
"modal",
"overlay",
"dialog",
"react-modal",
"react-overlay",
"react-overlay-component"
],
"author": "Binod <[email protected]> ([email protected])",
"license": "MIT",
"lint-staged": {
"*.scss": [
"prettier --write",
"git add"
],
"*.{js,jsx,mjs,md,json,yml}": [
"prettier-eslint --write",
"git add"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"dependencies": {
"sass": "^1.56.1"
}
}