-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
75 lines (75 loc) · 1.77 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
{
"name": "react-header-modal",
"version": "0.4.12",
"description": "A react component for modals and dialogs which allows you to have custom header and super easy overrides of default styles.",
"main": "lib/modalview.js",
"scripts": {
"build": "./node_modules/babel-cli/bin/babel.js src -d lib",
"watch": "./node_modules/babel-cli/bin/babel.js src --watch -d lib",
"lint": "./node_modules/eslint/bin/eslint.js src"
},
"repository": {
"type": "git",
"url": "[email protected]:scherler/react-header-modal.git"
},
"files": [
"lib/*"
],
"bugs": "https://github.com/scherler/react-header-modal/issues",
"keywords": [
"React",
"Modal",
"Dialog",
"react-component"
],
"tags": [
"react",
"modal",
"dialog"
],
"author": "Thorsten Scherler",
"contributors": [
{
"name": "Juho Vepsäläinen",
"email": "[email protected]"
},
{
"name": "kalle",
"email": "[email protected]"
},
{
"name": "Marcio Gasparotto",
"email": "[email protected]"
},
{
"name": "Michael McCaskill",
"email": "[email protected]"
},
{
"name": "MIJOTHY",
"email": "[email protected]"
},
{
"name": "Thorsten Scherler",
"email": "[email protected]"
}
],
"license": "MIT",
"dependencies": {
"prop-types": "^15.7.2"
},
"devDependencies": {
"babel": "^6.5.2",
"babel-cli": "^6.16.0",
"babel-core": "^6.17.0",
"babel-eslint": "^7.0.0",
"babel-loader": "^6.2.5",
"babel-preset-es2015": "^6.16.0",
"babel-preset-react": "^6.16.0",
"babel-preset-stage-0": "^6.16.0",
"eslint": "^3.7.1",
"eslint-plugin-react": "^6.3.0",
"jest-cli": "^16.0.1",
"react": "^15.3.2"
}
}