-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
76 lines (76 loc) · 1.76 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
76
{
"name": "@neovici/cosmoz-router",
"version": "11.2.0",
"description": "A Polymer component to handle client side URL routing and view loading / management",
"keywords": [
"polymer",
"web-components"
],
"homepage": "https://github.com/neovici/cosmoz-router#readme",
"bugs": {
"url": "https://github.com/neovici/cosmoz-router/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/neovici/cosmoz-router.git"
},
"license": "Apache-2.0",
"author": "",
"main": "dist/index.js",
"directories": {
"test": "test"
},
"files": [
"dist/*"
],
"scripts": {
"lint": "tsc && eslint --cache .",
"build": "tsc -p tsconfig.build.json",
"start": "wds",
"test": "wtr --coverage",
"test:watch": "wtr --watch",
"prepare": "husky"
},
"release": {
"plugins": [
"@semantic-release/commit-analyzer",
"@semantic-release/release-notes-generator",
"@semantic-release/changelog",
"@semantic-release/github",
"@semantic-release/npm",
"@semantic-release/git"
],
"branch": "master",
"preset": "conventionalcommits"
},
"publishConfig": {
"access": "public"
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"exports": {
".": "./dist/index.js",
"./use-hash-param": "./dist/use-hash-param.js"
},
"dependencies": {
"@pionjs/pion": "^2.0.0"
},
"devDependencies": {
"@commitlint/cli": "^19.0.0",
"@commitlint/config-conventional": "^19.0.0",
"@neovici/cfg": "^1.15.0",
"@open-wc/testing": "^4.0.0",
"@semantic-release/changelog": "^6.0.0",
"@semantic-release/git": "^10.0.0",
"@types/mocha": "^10.0.3",
"@web/dev-server": "^0.4.0",
"@web/dev-server-storybook": "^2.0.0",
"@web/test-runner": "^0.18.0",
"husky": "^9.0.0",
"semantic-release": "^23.0.0",
"sinon": "^18.0.0"
}
}