forked from quri/react-bootstrap-datetimepicker
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
69 lines (69 loc) · 2.21 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
{
"name": "react-bootstrap-datetimepicker",
"version": "1.0.0",
"description": "A bootstrap datetime picker component for React.js",
"homepage": "http://dev.quri.com/react-bootstrap-datetimepicker/",
"repository": {
"type": "git",
"url": "https://github.com/quri/react-bootstrap-datetimepicker"
},
"bugs": {
"url": "https://github.com/quri/react-bootstrap-datetimepicker/issues"
},
"main": "./lib/index.js",
"scripts": {
"clean" : "rm -rf gh-pages lib dist",
"start" : "webpack-dev-server --config ./docs/webpack.config.babel.js",
"build" : "npm run clean && npm run build-npm && npm run build-standalone && npm run build-standalone-min",
"build-standalone": "NODE_ENV=production webpack",
"build-standalone-min": "NODE_ENV=production webpack --min",
"build-npm" : "babel src --out-dir lib --source-maps",
"build-docs" : "cp node_modules/eonasdan-bootstrap-datetimepicker/build/css/bootstrap-datetimepicker.min.css gh-pages/",
"lint" : "eslint src"
},
"keywords": [
"react",
"react-component",
"bootstrap",
"datetimepicker",
"datetime"
],
"author": "Loïc CHOLLIER <[email protected]>",
"contributors": [
"Karol Janyst <[email protected]>"
],
"license": "MIT",
"peerDependencies": {
"react": ">=0.14.0",
"react-dom": ">=0.14.0"
},
"devDependencies": {
"babel": "~6.5.2",
"babel-cli": "~6.6.5",
"babel-core": "~6.7.4",
"babel-eslint": "5.0.0",
"babel-loader": "~6.2.4",
"babel-plugin-transform-es2015-classes": "~6.6.5",
"babel-plugin-transform-class-properties": "~6.6.0",
"babel-preset-es2015": "~6.6.0",
"babel-preset-react": "~6.5.0",
"eonasdan-bootstrap-datetimepicker" : "~4.15.35",
"eslint": "~2.4.0",
"eslint-plugin-react": "~4.2.3",
"html-webpack-plugin": "~2.14.0",
"react": "~0.14.7",
"react-dom": "~0.14.7",
"react-hot-loader": "~1.3.0",
"webpack": "~1.12.14",
"webpack-dev-server" : "~1.14.1"
},
"dependencies": {
"core-js": "~2.2.1",
"classnames" : "~2.2.3",
"moment": "~2.12.0",
"moment-range": "~2.2.0",
"react-moment-proptypes" : "~1.1.1",
"react-overlays" : "~0.6.0",
"react-prop-types" : "~0.3.0"
}
}