-
-
Notifications
You must be signed in to change notification settings - Fork 95
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.36 KB
/
package.json
File metadata and controls
59 lines (59 loc) · 1.36 KB
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
{
"name": "react-skylight",
"version": "0.5.1",
"description": "A react component for modals and dialogs.",
"main": "lib/index.js",
"scripts": {
"build": "babel src -d lib",
"watch": "babel src --watch -d lib",
"test": "jest"
},
"repository": {
"type": "git",
"url": "[email protected]:marcio/react-skylight.git"
},
"bugs": "https://github.com/marcio/react-skylight/issues",
"keywords": [
"React",
"Modal",
"Dialog",
"react-component"
],
"tags": [
"react",
"modal",
"dialog"
],
"author": "Marcio Gasparotto",
"contributors": [
{
"name": "Chris Trevino",
"email": "[email protected]"
}
],
"license": "MIT",
"peerDependencies": {
"react": "^0.14.0 || ^15.0.1 || ^16.3.0"
},
"devDependencies": {
"@babel/cli": "^7.27.2",
"@babel/core": "^7.27.4",
"@babel/plugin-proposal-class-properties": "^7.18.6",
"@babel/preset-env": "^7.27.2",
"@babel/preset-react": "^7.27.1",
"babel-jest": "^29.7.0",
"eslint": "^3.19.0",
"eslint-config-airbnb": "^15.0.1",
"eslint-loader": "^1.3.0",
"eslint-plugin-react": "^7.0.1",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"jsdom": "^26.1.0",
"jsdom-global": "^3.0.2",
"react": "^16.14.0",
"react-dom": "^16.14.0"
},
"dependencies": {
"prop-types": "^15.5.10"
}
}