-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
80 lines (80 loc) · 2.29 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
{
"name": "rangepicker",
"version": "0.3.5",
"description": "Date Range Comparison Picker",
"main": "build/rangepicker.js",
"keywords": "range picker date compare comparison widget jquery",
"directories": {
"bin": "build",
"example": "example"
},
"engines": {
"node": "~8.11.3",
"npm": "~6.4.1"
},
"scripts": {
"clean:all": "rm -r build",
"autoprefixer": "postcss -u autoprefixer -r build/css/*",
"less": "lessc css/calendar.less build/css/calendar.css",
"lint": "eslint js",
"serve": "browser-sync start --server --files \"build/css/*.css, build/js/*.js, example/*.html, !node_modules/**/*.html\" --startPath example/",
"build:css": "npm run less && npm run autoprefixer",
"build:all": "npm run build:css && npm run build:js",
"browserify": "browserify js/rangepicker.js -o build/",
"uglify": "uglifyjs build/rangepicker.js -o build/rangepicker.js",
"watch:css": "onchange \"css/\" -- npm run build:css",
"watch:all": "npm-run-all -p serve watch:css watch:js",
"watch:js": "watchify js/*.js -o build/rangepicker.js -dv",
"watch": "npm run watch-css & npm run watch-js",
"build:js": "npm run lint && browserify js/*.js > build/rangepicker.js && npm run uglify"
},
"devDependencies": {
"autoprefixer": "^6.3.6",
"babel-cli": "^6.26.0",
"babel-preset-es2015": "^6.14.0",
"babelify": "^7.3.0",
"browser-sync": "^2.26.3",
"browserify": "^13.1.0",
"eslint": "^2.10.2",
"eslint-config-standard": "^5.3.1",
"eslint-plugin-promise": "^1.3.0",
"eslint-plugin-standard": "^1.3.2",
"less": "^2.7.1",
"npm-run-all": "^2.1.1",
"onchange": "^2.4.0",
"postcss-cli": "^2.5.2",
"uglify-js": "^2.6.2",
"watchify": "^3.11.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/orechova/rangepicker.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/orechova/rangepicker/issues"
},
"homepage": "https://github.com/orechova/rangepicker#readme",
"babel": {
"presets": [
"es2015"
]
},
"browserify": {
"transform": [
[
"babelify",
{
"presets": [
"es2015"
]
}
]
]
},
"dependencies": {
"jquery": "^3.1.0",
"moment": "^2.22.2"
}
}