-
-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
39 lines (39 loc) · 902 Bytes
/
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
{
"name": "react-layers-manager",
"version": "0.1.2",
"repository": "giuseppeg/react-layers-manager",
"main": "./lib/index.cjs.js",
"module": "./lib/index.es.js",
"files": [
"index.js",
"lib",
"README.md",
"LICENSE.md"
],
"description": "Manage layers and z-index in React applications effectively",
"keywords": [
"react",
"z-index",
"zIndex",
"layers",
"modal",
"tooltip"
],
"author": "Giuseppe Gurgone",
"license": "MIT",
"devDependencies": {
"babel-core": "^6.26.3",
"babel-plugin-external-helpers": "^6.22.0",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-preset-env": "^1.7.0",
"babel-preset-react": "^6.24.1",
"rollup": "^0.60.1",
"rollup-plugin-babel": "^3.0.4"
},
"peerDependencies": {
"react": ">= 16.3.x"
},
"scripts": {
"prepublish": "rm -rf lib && rollup -c"
}
}