forked from gpbl/react-day-picker
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
96 lines (96 loc) · 3.25 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-day-picker",
"version": "3.1.1",
"description": "Flexible date picker component for React",
"main": "DayPicker.js",
"browser": "./dist/DayPicker.js",
"style": "lib/style.css",
"files": [
"DayPicker.js",
"dist",
"lib",
"moment.js",
"utils.js"
],
"directories": {
"doc": "docs"
},
"scripts": {
"clean": "rimraf lib coverage dist",
"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 dist && npm run build",
"dist": "webpack -p",
"build": "babel ./src -d ./lib --source-maps && postcss --use autoprefixer src/style.css -d lib/",
"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/gpbl/react-day-picker.git"
},
"keywords": [
"react",
"react-component",
"component",
"calendar",
"date-picker",
"datepicker",
"date",
"picker",
"moment",
"momentjs"
],
"author": "Giampaolo Bellavite <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/gpbl/react-day-picker/issues"
},
"homepage": "https://react-day-picker.js.org",
"peerDependencies": {
"react": "~0.13.x || ~0.14.x || ^15.0.0"
},
"devDependencies": {
"autoprefixer": "^6.5.3",
"babel-cli": "^6.18.0",
"babel-core": "^6.18.2",
"babel-eslint": "^7.1.1",
"babel-loader": "^6.2.8",
"babel-preset-es2015": "^6.18.0",
"babel-preset-react": "6.16.0",
"babel-preset-stage-1": "6.16.0",
"chai": "3.5.0",
"chai-enzyme": "^0.6.1",
"cheerio": "0.22.0",
"coveralls": "^2.11.15",
"enzyme": "^2.6.0",
"eslint": "^3.11.0",
"eslint-config-airbnb": "^13.0.0",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-jsx-a11y": "^2.2.3",
"eslint-plugin-react": "^6.7.1",
"gitbook-cli": "2.3.0",
"istanbul": "1.1.0-alpha.1",
"jsdom": "9.0.0",
"mocha": "^3.2.0",
"moment": "^2.17.0",
"postcss-cli": "2.6.0",
"react": "^15.4.1",
"react-addons-test-utils": "^15.4.1",
"react-dom": "^15.4.1",
"react-hot-loader": "^3.0.0-beta.6",
"rimraf": "2.5.4",
"sinon": "1.17.6",
"sinon-chai": "2.8.0",
"webpack": "^1.13.3"
}
}