forked from ateliee/jquery.schedule
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
66 lines (66 loc) · 1.58 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
{
"name": "jq.schedule",
"version": "2.2.2",
"description": "jQuery time schedule plugin",
"main": "src/js/jq.schedule.js",
"types": "src/@types/jq.schedule.d.ts",
"scripts": {
"serve": "gulp serve",
"test": "npm run lint && npm run sass-lint",
"lint": "npx eslint .",
"lint:fix": "npx eslint . --fix",
"sass-lint": "sass-lint -v -q",
"build": "gulp build",
"git:tag": "gulp tag"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ateliee/jquery.schedule.git"
},
"keywords": [
"jquery",
"front-end",
"schedule",
"calendar",
"web",
"ajax",
"responsible"
],
"author": "ateliee <info@ateliee.com> (https://ateliee.com)",
"license": "MIT",
"bugs": {
"url": "https://github.com/ateliee/jquery.schedule/issues"
},
"homepage": "https://github.com/ateliee/jquery.schedule#readme",
"dependencies": {
"jquery": ">=3.4.1",
"jquery-ui-dist": "1.12.1"
},
"engines": {
"node": "8.16.2",
"npm": "6.4.1"
},
"devDependencies": {
"browser-sync": "2.26.7",
"eslint": "6.7.2",
"eslint-config-airbnb-base": "14.0.0",
"eslint-plugin-import": "2.19.1",
"eslint-plugin-jquery": "1.5.1",
"gulp": "4.0.2",
"gulp-plumber": "1.2.1",
"gulp-rename": "2.0.0",
"gulp-sass": "4.0.2",
"gulp-shell": "0.7.1",
"gulp-sourcemaps": "2.6.5",
"gulp-tag-version": "1.3.1",
"gulp-uglify": "3.0.2",
"husky": "3.1.0",
"readable-stream": "3.4.0",
"sass-lint": "1.13.1"
},
"husky": {
"hooks": {
"pre-commit": "npm test && npm run build"
}
}
}