-
-
Notifications
You must be signed in to change notification settings - Fork 35
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·63 lines (63 loc) · 1.75 KB
/
package.json
File metadata and controls
executable file
·63 lines (63 loc) · 1.75 KB
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
{
"type": "module",
"name": "jAlert",
"version": "6.0.0",
"description": "Simple jQuery (Modal | Popup | Lightbox | Alert) Plugin - ES5 compatible",
"main": "dist/jAlert.min.js",
"scripts": {
"build": "webpack --mode=production",
"dev": "webpack --mode=development --watch",
"test": "node --experimental-vm-modules ./node_modules/jest/bin/jest.js --testPathIgnorePatterns='tests/e2e|tests/visual'",
"test:e2e": "node --experimental-vm-modules ./node_modules/jest/bin/jest.js --config jest.e2e.config.mjs",
"test:unit": "node --experimental-vm-modules ./node_modules/jest/bin/jest.js --testPathPattern='tests/unit'",
"test:all": "npm run test && npm run test:e2e"
},
"keywords": [
"jquery",
"modal",
"popup",
"lightbox",
"alert",
"plugin"
],
"author": "HTMLGuy, LLC",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/HTMLGuyLLC/jAlert.git"
},
"bugs": {
"url": "https://github.com/HTMLGuyLLC/jAlert/issues"
},
"homepage": "https://htmlguyllc.github.io/jAlert/",
"peerDependencies": {
"jquery": ">=3.7.0"
},
"devDependencies": {
"@babel/core": "^7.23.0",
"@babel/preset-env": "^7.23.0",
"autoprefixer": "^10.4.16",
"babel-loader": "^9.1.3",
"css-loader": "^6.8.1",
"css-minimizer-webpack-plugin": "^5.0.1",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"mini-css-extract-plugin": "^2.7.6",
"postcss": "^8.4.31",
"postcss-loader": "^7.3.3",
"puppeteer": "^24.10.2",
"webpack": "^5.89.0",
"webpack-cli": "^5.1.4",
"jquery": "^3.7.0"
},
"browserslist": [
"> 1%",
"last 2 versions",
"not dead",
"not ie <= 10"
],
"engines": {
"node": ">=14.0.0",
"npm": ">=6.0.0"
}
}