-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
executable file
·59 lines (59 loc) · 1.52 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": "jquery-calendar-heatmap",
"version": "1.3.1",
"description": "A simple Calendar Heatmap for jQuery.",
"keywords": [
"jquery-plugin",
"jquery",
"calendar",
"heatmap",
"plugins"
],
"repository": {
"type": "git",
"url": "https://github.com/SeBassTian23/CalendarHeatmap.git"
},
"bugs": {
"url": "https://github.com/SeBassTian23/CalendarHeatmap/issues"
},
"author": {
"name": "Sebastian Kuhlgert",
"email": "sebastian.kuhlgert@gmail.com",
"url": "https://github.com/SeBassTian23"
},
"homepage": "https://github.com/SeBassTian23/CalendarHeatmap",
"contributors": [
{
"name": "Sebastian Kuhlgert",
"email": "sebastian.kuhlgert@gmail.com",
"url": "https://github.com/SeBassTian23"
}
],
"license": "MIT",
"dependencies": {
"jquery": "^3.6.0"
},
"devDependencies": {
"eslint-config-jquery": "^3.0.0",
"grunt": "^1.4.1",
"grunt-contrib-concat": "^1.0.1",
"grunt-contrib-cssmin": "^4.0.0",
"grunt-contrib-jshint": "^3.0.0",
"grunt-contrib-less": "^3.0.0",
"grunt-contrib-uglify": "^5.0.1",
"grunt-contrib-watch": "^1.1.0",
"grunt-eslint": "^23.0.0",
"grunt-karma": "^4.0.2",
"karma": "^6.3.4",
"karma-brave-launcher": "^1.0.0",
"karma-chrome-launcher": "^3.1.0",
"karma-qunit": "^4.1.2",
"karma-safari-launcher": "^1.0.0",
"qunit": "^2.16.0"
},
"scripts": {
"test": "grunt eslint && grunt travis --verbose",
"prebuild": "npm run test",
"build": "grunt build"
}
}