-
Notifications
You must be signed in to change notification settings - Fork 195
/
package.json
83 lines (83 loc) · 2.94 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
76
77
78
79
80
81
82
83
{
"name": "react-bootstrap-date-picker",
"keywords": [
"react",
"react-component",
"react-bootstrap",
"bootstrap",
"date picker",
"calendar",
"date",
"picker"
],
"main": "lib/index.js",
"version": "5.1.1",
"description": "React-Bootstrap based date picker.",
"directories": {
"test": "test"
},
"peerDependencies": {
"react": ">=0.14.0",
"react-bootstrap": "^0.31.0"
},
"devDependencies": {
"assert": "^1.4.1",
"babel": "^6.23.0",
"babel-cli": "^6.24.0",
"babel-eslint": "^7.2.0",
"babel-loader": "^6.4.1",
"babel-plugin-add-module-exports": "^0.2.1",
"babel-preset-es2015": "^6.24.0",
"babel-preset-react": "^6.23.0",
"babel-preset-stage-1": "^6.22.0",
"co": "^4.6.0",
"create-react-class": "^15.5.2",
"doctoc": "^1.3.0",
"envify": "^4.0.0",
"es6-promise": "^4.1.0",
"eslint": "^3.18.0",
"eslint-loader": "1.6.3",
"eslint-plugin-react": "^6.10.3",
"expose-loader": "^0.7.3",
"isparta-loader": "^2.0.0",
"karma": "^1.5.0",
"karma-browserstack-launcher": "^1.2.0",
"karma-chrome-launcher": "^2.0.0",
"karma-coverage": "^1.1.1",
"karma-coveralls": "^1.1.2",
"karma-firefox-launcher": "^1.0.1",
"karma-mocha": "^1.3.0",
"karma-safari-launcher": "^1.0.0",
"karma-sourcemap-loader": "^0.3.7",
"karma-webpack": "^2.0.3",
"mocha": "^3.2.0",
"mocha-babel": "^3.0.3",
"node-uuid": "^1.4.7",
"prop-types": "^15.5.8",
"react": "^15.5.4",
"react-bootstrap": "^0.31.0",
"react-dom": "^15.5.4",
"regenerator": "^0.8.46",
"regenerator-loader": "^3.1.0",
"transform-loader": "^0.2.4",
"webpack": "^2.2.1",
"webpack-dev-server": "^2.4.2"
},
"scripts": {
"example": "./node_modules/webpack-dev-server/bin/webpack-dev-server.js --content-base example/ --config ./example/webpack.example.config.js",
"gh-pages": "./node_modules/webpack/bin/webpack.js --config ./example/webpack.example.config.js; cp ./example/index.html /tmp/index.html; cp ./example/bundle.js /tmp/bundle.js; git checkout gh-pages; cp /tmp/index.html ./index.html; cp /tmp/bundle.js ./bundle.js; chmod -x .git/hooks/pre-commit .git/hooks/post-commit; git commit -a -m 'Automatic Example Update'; git push origin gh-pages; chmod +x .git/hooks/pre-commit .git/hooks/post-commit; git checkout master;",
"test": "./node_modules/karma/bin/karma start test/karma.conf.js",
"build": "doctoc . --github --title '<h1>Table of Contents</h1>'; ./node_modules/babel-cli/bin/babel.js ./src --plugins add-module-exports --out-dir ./lib;",
"lint": "./node_modules/.bin/eslint --fix ./src/**"
},
"repository": {
"type": "git",
"url": "git+https://github.com/pushtell/react-bootstrap-date-picker.git"
},
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/pushtell/react-bootstrap-date-picker/issues"
},
"homepage": "https://github.com/pushtell/react-bootstrap-date-picker#readme"
}