-
Notifications
You must be signed in to change notification settings - Fork 445
/
package.json
47 lines (47 loc) · 1.15 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
{
"name": "clndr",
"version": "1.5.1",
"description": "A jQuery calendar plugin that uses HTML templates.",
"author": "Kyle Stetz",
"contributors": [
"Mike Gioia <[email protected]>"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/kylestetz/CLNDR"
},
"scripts": {
"lint": "./node_modules/.bin/eslint --fix-dry-run src || exit 0",
"fix": "./node_modules/.bin/eslint --fix src || exit 0"
},
"keywords": [
"clndr",
"calendar",
"jquery",
"plugin",
"widget",
"jquery-plugin"
],
"bugs": {
"url": "https://github.com/kylestetz/CLNDR/issues"
},
"homepage": "https://github.com/kylestetz/CLNDR",
"main": "src/clndr.js",
"dependencies": {
"jquery": ">=1.9",
"moment": ">=2.8.3"
},
"devDependencies": {
"eslint": "^4.19.1",
"eslint-config-standard": "^11.0.0",
"eslint-plugin-import": "^2.12.0",
"eslint-plugin-node": "^6.0.1",
"eslint-plugin-promise": "^3.8.0",
"eslint-plugin-standard": "^4.0.0",
"grunt": "*",
"grunt-contrib-less": "^2.0.0",
"grunt-contrib-uglify": "^4.0.1",
"grunt-contrib-watch": "^1.1.0"
}
}