-
Notifications
You must be signed in to change notification settings - Fork 46
/
package.json
72 lines (72 loc) · 2.05 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
{
"name": "react-calendar",
"version": "1.1.0",
"author": "Mikhail <[email protected]> Novikov",
"description": "Calendar component for ReactJS",
"keywords": [
"react",
"react-component",
"calendar",
"browser"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/freiksenet/react-calendar.git"
},
"dependencies": {
"classnames": "^2.2.3"
},
"peerDependencies": {
"moment": "^2.8.3",
"react": "15.x",
"react-dom": "15.x"
},
"devDependencies": {
"babel-cli": "^6.5.1",
"babel-core": "^6.5.1",
"babel-eslint": "^4.1.8",
"babel-loader": "^6.2.2",
"babel-plugin-react-transform": "^2.0.0",
"babel-plugin-transform-runtime": "^6.5.0",
"babel-polyfill": "^6.5.0",
"babel-preset-es2015": "^6.5.0",
"babel-preset-react": "^6.5.0",
"babel-preset-stage-0": "^6.5.0",
"babel-runtime": "^6.5.0",
"bootstrap": "~3.2.0",
"chai": "^3.5.0",
"css-loader": "^0.23.1",
"enzyme": "^2.0.0",
"eslint-plugin-react": "^3.16.1",
"file-loader": "^0.7.2",
"isparta": "^4.0.0",
"jsx-loader": "^0.12.2",
"less": "^2.6.0",
"less-loader": "^2.2.2",
"mocha": "^2.4.5",
"moment": "^2.8.3",
"raw-loader": "^0.5.1",
"react": "15.x",
"react-dom": "15.x",
"react-addons-test-utils": "15.x",
"react-hot-loader": "^1.3.0",
"rimraf": "^2.5.2",
"style-loader": "^0.13.0",
"url-loader": "^0.5.5",
"webpack": "^1.4.3",
"webpack-dev-server": "^1.14.1"
},
"main": "./dist/react-calendar.js",
"scripts": {
"clean": "rimraf build dist",
"test": "npm run umd && NODE_ENV=test mocha",
"test:watch": "NODE_ENV=test mocha --watch",
"prepublish": "webpack",
"umd": "REACT_CALENDAR_WEBPACK=umd webpack",
"umd-min": "REACT_CALENDAR_WEBPACK=umd_min webpack",
"demo": "REACT_CALENDAR_WEBPACK=umd webpack --entry ./demo.js",
"start": "REACT_CALENDAR_WEBPACK=server webpack-dev-server -d --entry ./demo.js --hot --progress --colors --inline",
"gh-pages": "./scripts/gh-pages.sh"
}
}