forked from sweetalert2/sweetalert2
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
81 lines (81 loc) · 2.58 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
{
"name": "sweetalert2-uncensored",
"version": "11.10.8-1-uncensored",
"repository": "alexiscirmi/sweetalert2-uncensored",
"homepage": "https://sweetalert2.github.io/",
"description": "SweetAlert 2 without protestware.",
"main": "dist/sweetalert2.all.js",
"browser": "dist/sweetalert2.all.js",
"module": "dist/sweetalert2.all.js",
"types": "sweetalert2.d.ts",
"devDependencies": {
"@babel/core": "^7.19.6",
"@babel/preset-env": "^7.19.4",
"@rollup/plugin-babel": "^6.0.2",
"@rollup/plugin-terser": "^0.4.0",
"@sweetalert2/eslint-config": "^1.0.11",
"@sweetalert2/stylelint-config": "^3.0.0",
"cypress": "^13.0.0",
"eslint": "^8.24.0",
"eslint-plugin-cypress": "^2.12.1",
"eslint-plugin-jsdoc": "^48.0.0",
"eslint-plugin-no-unsanitized": "^4.0.1",
"jquery": "^3.6.1",
"playwright-webkit": "^1.37.1",
"prettier": "^3.0.0",
"rollup": "^4.0.0",
"sass": "^1.55.0",
"stylelint": "^16.0.0",
"typescript": "4.7.4",
"vite": "^5.0.0",
"zx": "^7.1.1"
},
"devDependenciesComments": {
"typescript": "Do not upgrade TS, tests will verify that types work with the very first version of TS >= 4.0"
},
"files": [
"dist",
"src",
"sweetalert2.d.ts"
],
"author": "Alexis Emanuel Cirmi (https://github.com/alexiscirmi)",
"contributors": [
"Limon Monte (https://limonte.github.io)",
"Matthew Francis Brunetti <zenflow87@gmail.com> (https://github.com/zenflow)",
"Morgan Touverey-Quilling <mtouverey@alembic-dev.com> (https://github.com/toverux)",
"Giuseppe Verni (https://github.com/gverni)",
"Sam Turrell <sam@samturrell.co.uk> (https://github.com/samturrell)",
"Joseph Schultz (https://github.com/acupofjose)",
"Johan Fagerberg (https://github.com/birjolaxew)"
],
"keywords": [
"sweetalert",
"sweetalert2",
"alert",
"modal",
"popup",
"prompt",
"confirm",
"toast",
"accessible",
"uncensored"
],
"scripts": {
"dev": "vite sandbox --open",
"lint": "stylelint src/**/*.scss && eslint src cypress *.js *.ts && prettier --check src/**/*.js cypress/**/*.js *.js",
"build": "zx tools/build.mjs",
"test": "cypress run --headless",
"check-types": "npx -p typescript@latest tsc --noEmit -p jsconfig.json",
"cypress:open": "cypress open",
"webpack-build": "webpack --config=test/webpack/webpack.config.js"
},
"prettier": {
"printWidth": 120,
"semi": false,
"singleQuote": true,
"quoteProps": "consistent",
"trailingComma": "es5"
},
"bugs": "https://github.com/sweetalert2/sweetalert2/issues",
"license": "MIT"
}