forked from janmarsicek/react-day-picker
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
100 lines (100 loc) · 3.46 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
{
"name": "react-day-picker-radium",
"version": "0.0.3",
"description": "Flexible date picker component for React with Radium",
"main": "DayPicker.js",
"files": [
"DayPicker.js",
"lib",
"moment.js",
"utils.js",
"index.d.ts"
],
"directories": {
"doc": "docs"
},
"scripts": {
"clean": "rimraf coverage lib",
"lint": "eslint src test",
"test": "mocha --compilers js:babel-core/register --require ./test/setup.js --recursive --reporter spec",
"test:watch": "npm test -- --watch",
"test:files": "mocha --compilers js:babel-core/register --require ./test/setup.js --reporter spec --bail --watch",
"cover": "babel-node ./node_modules/istanbul/lib/cli cover -- _mocha --recursive --reporter spec",
"check": "npm run lint && npm run test",
"prerelease": "npm run check && npm run build && cp src/style.css lib",
"build": "npm run build:node && npm run build:production && npm run build:development",
"build:node": "rm -rf lib && babel ./src -d ./lib/src --source-maps",
"build:development": "NODE_ENV=development webpack",
"build:production": "NODE_ENV=production webpack -p",
"examples:clean": "rimraf examples/built",
"examples:build": "npm run examples:clean && cd examples && npm run build && cd ..",
"docs:clean": "rimraf _book",
"docs:prepare": "gitbook install",
"docs:build": "npm run docs:prepare && gitbook build",
"docs:serve": "gitbook serve",
"docs:publish": "npm run docs:clean && npm run docs:build && npm run examples:build && rimraf _book/examples && mv examples/built _book/examples && cd _book && ECHO react-day-picker.js.org > CNAME && git init && git commit --allow-empty -m 'Update docs and examples' && git checkout -b gh-pages && touch .nojekyll && git add . && git commit -am 'Update docs and examples' && git push [email protected]:gpbl/react-day-picker gh-pages --force"
},
"repository": {
"type": "git",
"url": "https://github.com/blueberryapps/react-day-picker-radium.git"
},
"keywords": [
"react",
"react-component",
"component",
"calendar",
"date-picker",
"datepicker",
"date",
"picker",
"moment",
"momentjs",
"radium"
],
"author": "Giampaolo Bellavite <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/blueberryapps/react-day-picker-radium/issues"
},
"homepage": "https://react-day-picker.js.org",
"peerDependencies": {
"react": "~0.13.x || ~0.14.x || ^15.0.0"
},
"devDependencies": {
"autoprefixer": "^6.7.6",
"babel-cli": "^6.23.0",
"babel-core": "^6.23.1",
"babel-eslint": "^7.1.1",
"babel-loader": "^6.4.0",
"babel-preset-es2015": "^6.22.0",
"babel-preset-react": "^6.23.0",
"babel-preset-stage-1": "^6.22.0",
"chai": "3.5.0",
"chai-enzyme": "^0.6.1",
"cheerio": "0.22.0",
"coveralls": "^2.12.0",
"enzyme": "^2.7.1",
"eslint": "^3.17.0",
"eslint-config-airbnb": "^14.1.0",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-jsx-a11y": "^4.0.0",
"eslint-plugin-react": "^6.10.0",
"gitbook-cli": "2.3.0",
"istanbul": "1.1.0-alpha.1",
"jsdom": "9.0.0",
"mocha": "^3.2.0",
"moment": "^2.17.1",
"postcss-cli": "2.6.0",
"react": "^15.4.2",
"react-addons-test-utils": "^15.4.2",
"react-dom": "^15.4.2",
"react-hot-loader": "^3.0.0-beta.6",
"rimraf": "^2.6.1",
"sinon": "^1.17.7",
"sinon-chai": "2.8.0",
"webpack": "^2.2.1"
},
"dependencies": {
"radium": "^0.18.2"
}
}