forked from add2cal/add-to-calendar-button
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
89 lines (89 loc) · 2.47 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
77
78
79
80
81
82
83
84
85
86
87
88
89
{
"name": "add-to-calendar-button",
"version": "1.15.5",
"engines": {
"node": ">=14.20.0"
},
"description": "A convenient JavaScript snippet, which lets you create beautiful buttons, where people can add events to their calendars.",
"main": "npm_dist/cjs/index.js",
"module": "npm_dist/mjs/index.js",
"exports": {
"./assets/css/": "./assets/css/",
".": {
"import": "./npm_dist/mjs/index.js",
"require": "./npm_dist/cjs/index.js"
}
},
"types": "index.d.ts",
"style": "assets/css/atcb.css",
"jsdelivr": "./dist/atcb.js",
"repository": {
"type": "git",
"url": "https://github.com/add2cal/add-to-calendar-button.git"
},
"keywords": [
"button",
"microsoft",
"light",
"open-source",
"apple",
"google",
"generator",
"component",
"simple",
"vanilla-js",
"free",
"snippet",
"outlook",
"easy",
"vanillajs",
"add-to-calendar",
"addevent",
"add-to-calendar-button",
"calendar"
],
"author": {
"name": "Jens Kuerschner",
"url": "https://jenskuerschner.de/"
},
"license": "SEE LICENSE.txt",
"bugs": {
"url": "https://github.com/add2cal/add-to-calendar-button/issues"
},
"homepage": "https://add-to-calendar-button.com/",
"scripts": {
"release": "node set-release.js",
"stylelint": "npx stylelint assets/css/*.css && npx stylelint demo_assets/css/*.css",
"stylelint:fix": "npm run stylelint -- --fix",
"eslint": "npx eslint .",
"eslint:fix": "npm run eslint -- --fix",
"prettier": "npx prettier . --check",
"prettier:fix": "npm run prettier -- --write",
"format": "npm run eslint:fix && npm run prettier:fix && npm run stylelint:fix",
"test": "node test/tests.js",
"build-npm": "npx grunt npm",
"build": "npx grunt"
},
"dependencies": {
"timezones-ical-library": "^1.2.1"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^5.37.0",
"@typescript-eslint/parser": "^5.37.0",
"eslint": "^8.23.1",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-commonjs": "^1.0.2",
"eslint-plugin-security": "^1.5.0",
"grunt": ">=1.5.3",
"grunt-contrib-clean": "^2.0.1",
"grunt-contrib-concat": "^2.1.0",
"grunt-contrib-cssmin": "^4.0.0",
"grunt-contrib-uglify": "^5.2.2",
"grunt-file-creator": "^0.1.3",
"grunt-version": "^3.0.0",
"prettier": "2.7.1",
"stylelint": "^14.11.0",
"stylelint-config-prettier": "^9.0.3",
"stylelint-config-standard": "^28.0.0"
}
}