forked from add2cal/add-to-calendar-button
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
124 lines (124 loc) · 3.56 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
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
{
"name": "add-to-calendar-button",
"version": "2.6.19",
"engines": {
"node": ">=18.17.0",
"npm": ">=9.6.7"
},
"description": "A convenient JavaScript snippet, which lets you create beautiful buttons, where people can add events to their calendars.",
"main": "dist/commonjs/index.js",
"module": "dist/module/index.js",
"files": [
"dist",
"test",
"assets/css/*.css",
"index.d.ts",
"unstyle/index.d.ts",
"no-pro/index.d.ts",
"no-pro-unstyle/index.d.ts",
".eslintrc.json",
"CHANGELOG.md",
".npmignore"
],
"exports": {
".": {
"types": "./index.d.ts",
"import": "./dist/module/index.js",
"require": "./dist/commonjs/index.js"
},
"./no-pro": {
"types": "./no-pro/index.d.ts",
"import": "./dist/module/no-pro/index.js",
"require": "./dist/commonjs/no-pro/index.js"
},
"./unstyle": {
"types": "./unstyle/index.d.ts",
"import": "./dist/module/unstyle/index.js",
"require": "./dist/commonjs/unstyle/index.js"
},
"./no-pro-unstyle": {
"types": "./no-pro-unstyle/index.d.ts",
"import": "./dist/module/no-pro-unstyle/index.js",
"require": "./dist/commonjs/no-pro-unstyle/index.js"
}
},
"types": "index.d.ts",
"jsdelivr": "./dist/atcb.js",
"repository": {
"type": "git",
"url": "https://github.com/add2cal/add-to-calendar-button.git"
},
"keywords": [
"react",
"javascript",
"css",
"microsoft",
"apple",
"google",
"angular",
"widget",
"generator",
"component",
"vue",
"calendar",
"event",
"vanilla-js",
"free",
"snippet",
"outlook",
"add-to-calendar",
"add-to-calendar-button",
"add-event"
],
"author": {
"name": "Jens Kuerschner",
"url": "https://jekuer.com/"
},
"license": "ELv2",
"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",
"stylelint:fix": "npm run stylelint -- --fix",
"eslint": "npx eslint --ext \".ts,.js\" .",
"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 && cd demo && npm run lint:fix && npm run prettier:fix",
"test": "node test/test-prep.js && npx web-test-runner test/wc-tests/*.test.js --node-resolve",
"dev": "cd demo && npm run dev",
"build:all": "npm run build && npm run build:demo",
"build:demo": "cd demo && npm run generate",
"build:min": "npx grunt uglifyMain",
"build": "npx grunt"
},
"dependencies": {
"timezones-ical-library": "^1.8.3"
},
"devDependencies": {
"@open-wc/testing": "^4.0.0",
"@typescript-eslint/eslint-plugin": "^8.1.0",
"@typescript-eslint/parser": "^8.1.0",
"@web/test-runner": "^0.18.3",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-commonjs": "^1.0.2",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-security": "^3.0.1",
"eslint-plugin-wc": "^2.1.0",
"grunt": ">=1.6.1",
"grunt-contrib-clean": "^2.0.1",
"grunt-contrib-concat": "^2.1.0",
"grunt-contrib-cssmin": "^5.0.0",
"grunt-contrib-uglify": "^5.2.2",
"grunt-file-creator": "^0.1.3",
"grunt-version": "^3.0.1",
"prettier": "3.3.3",
"prettier-plugin-tailwindcss": "^0.6.6",
"stylelint": "^16.8.2",
"stylelint-config-standard": "^36.0.1"
}
}