-
Notifications
You must be signed in to change notification settings - Fork 28
/
Copy pathpackage.json
56 lines (56 loc) · 1.65 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
{
"name": "react-confirm-bootstrap",
"version": "5.3.1",
"description": "Confirm Dialog for react with Bootstrap Modal",
"main": "lib/Confirm.js",
"scripts": {
"package": "gulp build",
"clean": "rimraf lib",
"lint": "eslint src",
"prepare": "npm run clean && npm run package",
"start": "react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test --env=jsdom",
"eject": "react-scripts eject"
},
"repository": {
"type": "git",
"url": "git+https://github.com/gregthebusker/react-confirm-bootstrap.git"
},
"keywords": [
"react",
"bootstrap",
"confirm",
"modal",
"dialog"
],
"author": "Greg Schechter",
"license": "MIT",
"bugs": {
"url": "https://github.com/gregthebusker/react-confirm-bootstrap/issues"
},
"homepage": "https://github.com/gregthebusker/react-confirm-bootstrap#readme",
"devDependencies": {
"babel": "^6.23.0",
"babel-core": "^6.26.3",
"babel-plugin-transform-es2015-modules-umd": "^6.24.1",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-0": "^6.24.1",
"eslint": "^3.0.1",
"eslint-plugin-react": "^5.1.1",
"gulp": "^3.9.1",
"gulp-babel": "^6.1.3",
"react": "^16.3.2",
"react-dom": "^16.3.2",
"react-scripts": "^1.1.4",
"rimraf": "^2.6.2"
},
"peerDependencies": {
"react": ">=15.0.0"
},
"dependencies": {
"prop-types": "^15.6.1",
"react-bootstrap": "^0.33.1"
}
}