-
Notifications
You must be signed in to change notification settings - Fork 12
/
package.json
executable file
·76 lines (76 loc) · 2.08 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
{
"name": "mtr-datepicker",
"private": false,
"version": "0.3.11",
"description": "The pure JavaScript ultimate datepicker",
"license": "MIT",
"homepage": "http://mtrdesign.github.io/mtr-datepicker/",
"keywords": [
"datepicker",
"mtr datepicker",
"mtr design",
"pure javascript",
"javascript datepicker",
"js datepicker"
],
"author": {
"name": "MTR Design",
"url": " http://www.mtr-design.com"
},
"contributors": [
"Valentin Kirilov <[email protected]> (valkirilov.github.io)"
],
"repository": {
"type": "git",
"url": "https://github.com/mtrdesign/mtr-datepicker.git"
},
"dependencies": {},
"scripts": {
"start": "grunt",
"test": "node node_modules/karma/bin/karma start karma.conf.js",
"lint": "npx eslint ."
},
"devDependencies": {
"coveralls": "^3.1.0",
"eslint": "^7.4.0",
"eslint-config-standard": "^14.1.1",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-jasmine": "^4.1.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1",
"grunt": "^1.2.1",
"grunt-cache-breaker": "^2.0.1",
"grunt-cli": "^1.3.2",
"grunt-contrib-connect": "^2.1.0",
"grunt-contrib-copy": "^1.0.0",
"grunt-contrib-cssmin": "^3.0.0",
"grunt-contrib-jshint": "^2.1.0",
"grunt-contrib-less": "^2.0.0",
"grunt-contrib-uglify": "^4.0.1",
"grunt-contrib-watch": "^1.1.0",
"grunt-coveralls": "^2.0.0",
"grunt-jsdoc": "^2.4.1",
"grunt-karma-coveralls": "^2.5.4",
"grunt-notify": "^0.4.5",
"husky": "^4.2.5",
"istanbul": "^0.4.5",
"jasmine": "^3.5.0",
"jasmine-core": "^3.5.0",
"jasmine-jquery": "^2.1.1",
"karma": "^5.1.0",
"karma-chrome-launcher": "^3.1.0",
"karma-coverage": "^2.0.2",
"karma-firefox-launcher": "^1.3.0",
"karma-jasmine": "^3.3.1",
"karma-jasmine-html-reporter": "^1.5.4",
"karma-jasmine-jquery": "^0.1.1",
"karma-jquery": "^0.2.4"
},
"husky": {
"hooks": {
"pre-commit": "npm run lint",
"pre-push": "npm run test"
}
}
}