forked from Rudeg/react-input-calendar
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
96 lines (96 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
84
85
86
87
88
89
90
91
92
93
94
95
96
{
"name": "react-input-calendar",
"description": "Datepicker widget react component",
"author": "Rudeg <[email protected]> (https://github.com/Rudeg)",
"user": "Rudeg",
"version": "0.2.0",
"scripts": {
"start": "webpack-dev-server --port 3030",
"test": "karma start",
"tdd": "karma start --auto-watch --no-single-run",
"gh-pages": "webpack",
"deploy-gh-pages": "node ./lib/deploy_gh_pages.js",
"dist": "webpack",
"dist-min": "webpack",
"dist-modules": "babel ./src --out-dir ./dist-modules",
"lint": "eslint . --ext .js --ext .jsx",
"preversion": "npm run test && npm run lint && npm run dist && npm run dist-min && git commit --allow-empty -am \"Update dist\"",
"prepublish": "npm run dist-modules",
"postpublish": "npm run gh-pages && npm run deploy-gh-pages",
"postinstall": "node lib/post_install.js"
},
"main": "dist/react-input-calendar.js",
"dependencies": {
"classnames": "^2.2.1"
},
"peerDependencies": {
"moment": "^2.10.6",
"moment-range": "^2.1.0",
"react": "^0.14.3",
"react-dom": "^0.14.3"
},
"devDependencies": {
"babel": "^5.8.23",
"babel-eslint": "^4.1.3",
"babel-loader": "^5.3.2",
"babel-plugin-react-transform": "^1.1.1",
"chai": "^3.3.0",
"clean-webpack-plugin": "^0.1.3",
"css-loader": "^0.23.0",
"eslint": "^1.6.0",
"eslint-loader": "^1.1.0",
"eslint-plugin-react": "^3.5.1",
"extract-text-webpack-plugin": "^0.9.1",
"file-loader": "^0.8.4",
"gh-pages": "^0.5.0",
"git-prepush-hook": "^1.0.1",
"highlight.js": "^8.8.0",
"html-webpack-plugin": "^1.6.2",
"isparta-instrumenter-loader": "^0.2.1",
"json-loader": "^0.5.3",
"karma": "^0.13.10",
"karma-chai": "^0.1.0",
"karma-coverage": "^0.5.2",
"karma-mocha": "^0.2.0",
"karma-phantomjs-launcher": "^0.2.1",
"karma-sourcemap-loader": "^0.3.5",
"karma-spec-reporter": "0.0.22",
"karma-webpack": "^1.7.0",
"markdown-to-react-components": "bebraw/markdown-to-react-components#highlight",
"mocha": "^2.3.3",
"phantomjs": "^1.9.18",
"phantomjs-polyfill": "0.0.1",
"purecss": "^0.6.0",
"react-addons-test-utils": "^0.14.0",
"react-ghfork": "^0.3.2",
"react-transform-hmr": "^1.0.1",
"style-loader": "^0.13.0",
"sync-exec": "^0.6.2",
"system-bell-webpack-plugin": "^1.0.0",
"url-loader": "^0.5.6",
"webpack": "^1.12.2",
"webpack-dev-server": "^1.12.0",
"webpack-merge": "^0.3.2"
},
"repository": {
"type": "git",
"url": "https://github.com/Rudeg/react-input-calendar"
},
"homepage": "http://rudeg.github.io/react-input-calendar/",
"bugs": {
"url": "https://github.com/Rudeg/react-input-calendar/issues"
},
"keywords": [
"react",
"datepicker",
"calendar",
"input-datepicker",
"input-calendar",
"react-input-calendar",
"react-calendar",
"react-datepicker",
"react-component"
],
"license": "MIT",
"pre-push": []
}