This repository has been archived by the owner on Jan 1, 2024. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 51
/
package.json
94 lines (94 loc) · 2.23 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
{
"name": "mailgo",
"version": "0.12.2",
"description": "a new concept of mailto and tel links",
"scripts": {
"start": "webpack serve",
"build-js": "webpack",
"build-css": "gulp",
"build": "webpack && gulp",
"test": "jest --no-cache"
},
"repository": {
"type": "git",
"url": "git+https://github.com/manzinello/mailgo.git"
},
"main": "./lib/mailgo.js",
"module": "./lib/mailgo.js",
"types": "./mailgo-types.d.ts",
"files": [
"dist",
"lib",
"i18n",
"mailgo-types.d.ts",
"package.json",
"README.md",
"SECURITY.md",
"LICENSE"
],
"keywords": [
"mailto",
"mail",
"tel",
"callto",
"gmail",
"outlook",
"telegram",
"whatsapp",
"skype",
"yahoo",
"mailgo"
],
"author": {
"name": "Matteo Manzinello",
"email": "matteomanzinello@gmail.com",
"url": "https://matteomanzinello.com"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/manzinello/mailgo/issues"
},
"homepage": "https://mailgo.dev",
"devDependencies": {
"@babel/cli": "^7.17.6",
"@babel/core": "^7.17.9",
"@babel/parser": "^7.17.9",
"@babel/preset-env": "^7.16.11",
"@babel/preset-typescript": "^7.16.7",
"@babel/types": "^7.17.0",
"@testing-library/dom": "^8.11.3",
"@testing-library/jest-dom": "^5.16.2",
"@testing-library/user-event": "^13.5.0",
"@types/jest": "^27.4.1",
"@types/node": "^17.0.24",
"autoprefixer": "^10.4.4",
"babel-loader": "^8.2.4",
"css-loader": "^6.7.1",
"gulp": "^4.0.2",
"gulp-clean-css": "^4.3.0",
"gulp-postcss": "^9.0.1",
"gulp-prettier": "^4.0.0",
"gulp-rename": "^2.0.0",
"gulp-sass": "^5.1.0",
"gulp-sourcemaps": "^3.0.0",
"jest": "^27.5.1",
"postcss": "^8.4.12",
"sass": "^1.50.0",
"sass-loader": "^12.6.0",
"style-loader": "^3.3.1",
"terser-webpack-plugin": "^5.3.1",
"to-string-loader": "^1.2.0",
"ts-jest": "^27.1.3",
"ts-loader": "^9.2.8",
"typescript": "^4.6.3",
"webpack": "^5.72.0",
"webpack-cli": "^4.9.2",
"webpack-dev-server": "^4.8.1"
},
"peerDependencies": {},
"funding": {
"type": "opencollective",
"url": "https://opencollective.com/mailgo"
},
"sideEffects": false
}