forked from abdmmar/wc-toast
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
59 lines (59 loc) · 1.48 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
{
"name": "wc-toast",
"version": "1.2.5",
"author": "Abdullah Ammar <[email protected]> (https://abdmmar.tech/)",
"license": "MIT",
"type": "module",
"main": "src/index.js",
"module": "src/index.js",
"files": [
"src"
],
"exports": {
".": {
"import": "./src/index.js",
"require": "./src/index.js"
},
"./custom-element": {
"import": "./src/custom-element.json",
"require": "./src/custom-element.json"
}
},
"keywords": [
"toast",
"alert",
"notification",
"wc",
"custom-elements",
"web components",
"javascript"
],
"types": "./src/index.d.ts",
"scripts": {
"generate-ce": "cem analyze --globs \"./src/wc-*.js\" --outdir \"./src/\"",
"generate-dts": "tsc --allowJs -d --emitDeclarationOnly src/index.js",
"test:watch": "jest --watch --verbose false",
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/abdmmar/wc-toast.git"
},
"bugs": {
"url": "https://github.com/abdmmar/wc-toast/issues"
},
"homepage": "https://github.com/abdmmar/wc-toast#readme",
"devDependencies": {
"@babel/preset-env": "7.16.5",
"@custom-elements-manifest/analyzer": "0.5.7",
"babel-jest": "27.4.5",
"eslint": "8.4.1",
"eslint-config-prettier": "8.3.0",
"jest": "26",
"jest-electron": "0.1.12",
"prettier": "2.5.1",
"regenerator-runtime": "0.13.9",
"typescript": "4.5.4"
},
"customElements": "src/custom-elements.json"
}