forked from Hacker0x01/react-datepicker
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
109 lines (109 loc) · 3.16 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
97
98
99
100
101
102
103
104
105
106
107
108
109
{
"author": "HackerOne",
"name": "react-datepicker",
"description": "A simple and reusable datepicker component for React",
"version": "0.53.0",
"license": "MIT",
"homepage": "https://github.com/Hacker0x01/react-datepicker",
"main": "dist/react-datepicker.min.js",
"style": "dist/react-datepicker.min.css",
"files": [
"*.md",
"dist",
"lib",
"src/stylesheets"
],
"keywords": [
"react",
"datepicker",
"calendar",
"date",
"react-component"
],
"repository": {
"type": "git",
"url": "git://github.com/Hacker0x01/react-datepicker.git"
},
"bugs": {
"url": "https://github.com/Hacker0x01/react-datepicker/issues"
},
"devDependencies": {
"babel-core": "^6.22.1",
"babel-eslint": "^7.2.2",
"babel-loader": "^6.2.10",
"babel-plugin-add-react-displayname": "^0.0.4",
"babel-plugin-react-transform": "^2.0.2",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-plugin-transform-react-remove-prop-types": "0.3.2",
"babel-preset-airbnb": "^2.2.3",
"babel-preset-es2015": "^6.22.0",
"babel-preset-react": "^6.22.0",
"babel-preset-stage-0": "^6.22.0",
"chai": "^3.5.0",
"codecov.io": "^0.1.6",
"cross-env": "^3.2.4",
"css-loader": "^0.26.1",
"enzyme": "^2.8.2",
"eslint": "^3.19.0",
"eslint-config-standard": "^6.2.0",
"eslint-plugin-promise": "^3.4.1",
"eslint-plugin-react": "^6.10.3",
"eslint-plugin-standard": "^2.0.1",
"express": "^4.14.1",
"extract-text-webpack-plugin": "^1.0.1",
"grunt": "1.0.1",
"grunt-babel": "^6.0.0",
"grunt-cli": "^1.2.0",
"grunt-contrib-watch": "1.0.0",
"grunt-eslint": "^19.0.0",
"grunt-karma": "^2.0.0",
"grunt-sass": "2.0.0",
"grunt-sass-lint": "^0.2.2",
"grunt-webpack": "^1.0.11",
"highlight.js": "^9.9.0",
"isparta-loader": "^2.0.0",
"karma": "^1.4.1",
"karma-chai": "^0.1.0",
"karma-coverage": "^1.0.0",
"karma-firefox-launcher": "^1.0.0",
"karma-mocha": "^1.3.0",
"karma-sinon": "^1.0.5",
"karma-sourcemap-loader": "^0.3.7",
"karma-webpack": "^1.8.1",
"lodash": "^4.17.4",
"mocha": "^3.2.0",
"node-sass": "^4.5.0",
"react": "^15.5.4",
"react-addons-test-utils": "^15.5.1",
"react-docgen": "^2.13.0",
"react-dom": "^15.5.4",
"react-test-renderer": "^15.5.4",
"react-transform-hmr": "^1.0.4",
"sass-loader": "^4.1.1",
"sinon": "^2.3.2",
"style-loader": "^0.13.1",
"webpack": "^1.13.0",
"webpack-dev-middleware": "^1.10.0",
"webpack-dev-server": "^1.16.3",
"webpack-hot-middleware": "^2.16.1"
},
"peerDependencies": {
"react": "^0.14.0 || ^15.0.0",
"react-dom": "^0.14.0 || ^15.0.0"
},
"dependencies": {
"classnames": "^2.2.5",
"moment": "^2.17.1",
"prop-types": "^15.5.8",
"react-onclickoutside": "^6.1.1",
"react-popper": "^0.7.2"
},
"scripts": {
"build": "cross-env NODE_ENV=production grunt build",
"start": "node server.js",
"test": "cross-env NODE_ENV=test grunt travis",
"eslint": "eslint **/*.jsx",
"prepublish": "npm run build",
"codecov": "cat coverage/*/lcov.info | ./node_modules/codecov.io/bin/codecov.io.js"
}
}