-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathpackage.json
75 lines (75 loc) · 1.82 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
{
"name": "wc-toast",
"version": "0.0.0-development",
"author": "Abdullah Ammar <[email protected]> (https://abdmmar.com/)",
"license": "MIT",
"type": "module",
"main": "src/index.js",
"module": "src/index.js",
"files": [
"src",
"types"
],
"exports": {
".": {
"import": {
"types": "./types/index.d.ts",
"default": "./src/index.js"
},
"require": {
"types": "./types/index.d.ts",
"default": "./src/index.js"
}
}
},
"keywords": [
"toast",
"alert",
"notification",
"wc",
"custom-elements",
"web components",
"javascript"
],
"types": "./types/index.d.ts",
"customElements": "src/custom-elements.json",
"scripts": {
"generate-ce": "cem analyze --globs \"./src/wc-*.js\" --outdir \"./src/\"",
"generate-dts": "tsc",
"test:watch": "jest --watch --verbose false",
"test": "jest",
"semantic-release": "semantic-release"
},
"repository": {
"type": "git",
"url": "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": "29",
"jest-environment-jsdom": "29.2.1",
"prettier": "2.5.1",
"regenerator-runtime": "0.13.9",
"semantic-release": "19.0.5",
"typescript": "5.1.3"
},
"release": {
"branches": [
"main",
"next",
"canary",
{
"name": "/(?<type>chore|feat|feature|fix|hotfix|refactor|style)(?<scope>(?:\\([^()\r\n]*\\)|\\()?(?<breaking>!)?)(?<subject>:.*)?/gm",
"prerelease": true
}
]
}
}