-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
107 lines (107 loc) · 2.85 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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
{
"name": "@neovici/cosmoz-tabs",
"version": "9.1.0",
"description": "A multi views container element that allow navigation between the views using tabs or an accordion.",
"keywords": [
"web-components"
],
"homepage": "https://github.com/neovici/cosmoz-tabs#readme",
"bugs": {
"url": "https://github.com/neovici/cosmoz-tabs/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/neovici/cosmoz-tabs.git"
},
"license": "Apache-2.0",
"author": "Neovici Development <dev@neovici.se>",
"main": "src/index.js",
"directories": {
"test": "test"
},
"files": [
"src/**/*.js",
"src/**/*.d.ts"
],
"scripts": {
"lint": "eslint --cache --ext .js .",
"lint-tsc": "tsc",
"start": "npm run storybook:start",
"test": "wtr --coverage",
"test:watch": "wtr --watch",
"storybook:start": "storybook dev -p 8000",
"storybook:build": "storybook build",
"storybook:deploy": "storybook-to-ghpages",
"storybook:preview": "npm run storybook:build && http-server ./storybook-static/ --silent",
"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"
},
"publishConfig": {
"access": "public"
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
],
"rules": {
"body-max-line-length": [
1,
"always",
100
]
}
},
"exports": {
".": "./src/index.js",
"./cosmoz-tabs": "./src/cosmoz-tabs.js",
"./cosmoz-tab": "./src/cosmoz-tab.js",
"./cosmoz-tab-card": "./src/cosmoz-tab-card.js",
"./cosmoz-tab-card.js": "./src/cosmoz-tab-card.js",
"./next/*": "./src/next/*"
},
"dependencies": {
"@neovici/cosmoz-collapse": "^1.5.0",
"@neovici/cosmoz-router": "^11.0.0",
"@neovici/cosmoz-utils": "^6.9.0",
"@pionjs/pion": "^2.0.0",
"@polymer/iron-icon": "^3.0.0",
"@polymer/iron-icons": "^3.0.0",
"compute-scroll-into-view": "^3.0.0",
"lit-html": "^2.0.0 || ^3.1.3"
},
"devDependencies": {
"@commitlint/cli": "^19.3.0",
"@commitlint/config-conventional": "^19.2.2",
"@neovici/cfg": "^1.54.1",
"@open-wc/testing": "^4.0.0",
"@polymer/iron-list": "^3.1.0",
"@semantic-release/changelog": "^6.0.0",
"@semantic-release/git": "^10.0.0",
"@storybook/addon-essentials": "^7.6.19",
"@storybook/addon-links": "^7.6.19",
"@storybook/storybook-deployer": "^2.8.16",
"@storybook/web-components": "7.6.17",
"@types/mocha": "^10.0.0",
"@types/node": "^22.0.0",
"@web/storybook-builder": "^0.1.16",
"@web/storybook-framework-web-components": "^0.1.2",
"storybook": "^7.6.19",
"esbuild": "^0.24.0",
"http-server": "^14.1.1",
"rollup-plugin-esbuild": "^6.1.1",
"husky": "^9.0.0",
"semantic-release": "^24.0.0",
"sinon": "^18.0.0",
"typescript": "^5.4.5"
}
}