-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
67 lines (67 loc) · 1.7 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
{
"name": "toaststrap",
"version": "1.1.0",
"description": "A simple, lightweight JavaScript library for showing Bootstrap 5 toast popups.",
"main": "./lib/cjs/index.js",
"module": "./lib/esm/index.js",
"private": false,
"scripts": {
"dev": "yarn build:esm && yarn build:cjs && yarn build:bundle-dev",
"prod": "npm run build:esm && npm run build:cjs && npm run build:bundle",
"build:esm": "tsc",
"build:cjs": "tsc --module commonjs --outDir ./lib/cjs",
"build:bundle": "webpack --mode production",
"build:bundle-dev": "webpack --watch --mode development",
"test": "jest",
"coverage": "jest --coverage"
},
"keywords": [
"bootstrap5-toastsr",
"bs5-toast",
"bs5-toastr",
"toast-bootstrap",
"toast-bs5",
"toastjs",
"toast-js",
"javascript",
"ts-toast"
],
"author": "Nawaf Khalifah",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/nawafscript/bootstrap5-toast.git"
},
"homepage": "https://github.com/nawafscript/toaststrap",
"bugs": {
"url": "https://github.com/nawafscript/toaststrap/issues",
"email": "[email protected]"
},
"fnding": [
{
"type": "ko-fi",
"url": "https://ko-fi.com/nawafinity"
}
],
"devDependencies": {
"@types/node": "^16.11.9",
"css-loader": "^6.5.0",
"file-loader": "^6.2.0",
"mini-css-extract-plugin": "^2.4.3",
"prettier": "2.4.1",
"sass": "^1.43.4",
"sass-loader": "^12.3.0",
"shx": "^0.3.3",
"style-loader": "^3.3.1",
"ts-loader": "^9.2.6",
"typescript": "^4.4.4",
"webpack": "^5.60.0",
"webpack-cli": "^4.9.1"
},
"dependencies": {
},
"files": [
"/lib",
"/bundle"
]
}