-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 740 Bytes
/
Copy pathpackage.json
File metadata and controls
35 lines (35 loc) · 740 Bytes
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
{
"name": "js-alert",
"version": "2.0.0",
"description": "A simple JavaScript popup alert manager.",
"main": "src/index.js",
"type": "module",
"scripts": {
"test": "npm install && npm build",
"build": "webpack",
"prepublish": "npm run build"
},
"keywords": [
"browser",
"javascript",
"alert",
"popup",
"modal"
],
"author": "jjv360",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/jjv360/js-alert.git"
},
"devDependencies": {
"@babel/core": "^7.20.12",
"@babel/preset-env": "^7.20.2",
"babel-loader": "^9.1.2",
"webpack": "^5.75.0",
"webpack-cli": "^5.0.1"
},
"dependencies": {
"light-sanitize-html": "^1.0.2"
}
}