forked from benitolopez/hotel-datepicker
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
59 lines (59 loc) · 1.83 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
{
"name": "hotel-datepicker",
"version": "3.4.2",
"author": "Benito Lopez (http://lopezb.com)",
"license": "MIT",
"description": "Date range picker for hotels",
"repository": {
"type": "git",
"url": "https://github.com/benitolopez/hotel-datepicker.git"
},
"bugs": {
"url": "https://github.com/benitolopez/hotel-datepicker/issues"
},
"homepage": "https://github.com/benitolopez/hotel-datepicker",
"keywords": [
"datepicker",
"calendar",
"date"
],
"scripts": {
"test": "xo",
"run:sass": "node-sass -o .sass-cache src/sass --output-style expanded",
"build:scss": "npm run run:sass && npm run run:sass -- -w",
"build:css": "postcss --no-map -w .sass-cache/hotel-datepicker.css -d dist/css",
"build:xo": "xo --fix || true",
"build:js": "node build.js",
"watch:server": "browser-sync start --startPath demo --reload-delay 300 --server --files 'dist/**,demo/**'",
"watch:build": "onchange 'src/js/*.js' -i -- npm-run-all --parallel --silent build:*",
"watch": "mkdir -p dist dist/css .sass-cache; touch .sass-cache/hotel-datepicker.css; npm-run-all --parallel --silent watch:*",
"build": "mkdir -p dist dist/css .sass-cache; touch .sass-cache/hotel-datepicker.css; npm-run-all --parallel --silent build:*"
},
"devDependencies": {
"autoprefixer": "^7.1.2",
"browser-sync": "^2.18.6",
"css-mqpacker": "^6.0.1",
"node-sass": "^4.1.1",
"npm-run-all": "^4.0.0",
"onchange": "^3.2.1",
"rollup": "^0.45.2",
"rollup-plugin-buble": "^0.15.0",
"rollup-plugin-filesize": "^1.0.1",
"rollup-plugin-uglify": "^2.0.1",
"rollup-watch": "^4.3.1",
"postcss-cli": "^4.0.0",
"xo": "^0.18.2"
},
"xo": {
"esnext": true,
"ignores": [
"demo/**"
],
"env": [
"browser"
]
},
"dependencies": {
"fecha": "^2.3.0"
}
}