timezones-ical-library 1.2.0 → 1.3.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "timezones-ical-library",
3
- "version": "1.2.0",
3
+ "version": "1.3.0",
4
4
  "engines": {
5
5
  "node": ">=14.20.0"
6
6
  },
@@ -54,12 +54,24 @@
54
54
  "homepage": "https://tz.add-to-calendar-technology.com/",
55
55
  "scripts": {
56
56
  "release": "node set-release.js",
57
+ "stylelint": "npx stylelint demo_assets/css/*.css",
58
+ "stylelint:fix": "npm run stylelint -- --fix",
59
+ "eslint": "npx eslint .",
60
+ "eslint:fix": "npm run eslint -- --fix",
61
+ "prettier": "npx prettier . --check",
62
+ "prettier:fix": "npm run prettier -- --write",
63
+ "format": "npm run eslint:fix && npm run prettier:fix && npm run stylelint:fix",
57
64
  "test": "node test/tests.js",
58
- "generate-db": "node generator.js",
59
65
  "build-npm": "npx grunt npm",
60
66
  "build": "npx grunt"
61
67
  },
62
68
  "devDependencies": {
69
+ "@typescript-eslint/eslint-plugin": "^5.38.1",
70
+ "@typescript-eslint/parser": "^5.38.1",
71
+ "eslint": "^8.24.0",
72
+ "eslint-config-prettier": "^8.5.0",
73
+ "eslint-plugin-commonjs": "^1.0.2",
74
+ "eslint-plugin-security": "^1.5.0",
63
75
  "glob": "^8.0.3",
64
76
  "grunt": ">=1.5.3",
65
77
  "grunt-contrib-clean": "^2.0.1",
@@ -67,6 +79,10 @@
67
79
  "grunt-contrib-cssmin": "^4.0.0",
68
80
  "grunt-contrib-uglify": "^5.2.2",
69
81
  "grunt-file-creator": "^0.1.3",
70
- "grunt-version": "^3.0.0"
82
+ "grunt-version": "^3.0.0",
83
+ "prettier": "^2.7.1",
84
+ "stylelint": "^14.13.0",
85
+ "stylelint-config-prettier": "^9.0.3",
86
+ "stylelint-config-standard": "^28.0.0"
71
87
  }
72
88
  }