@jenkinsci/jenkins-io-components 1.11.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/LICENSE +21 -0
- package/README.md +91 -0
- package/build/jio-cdf-logo.d.ts +11 -0
- package/build/jio-changelog-ratings.d.ts +19 -0
- package/build/jio-changelog-weather-icon.d.ts +14 -0
- package/build/jio-components.cjs.js +66 -0
- package/build/jio-components.d.ts +11 -0
- package/build/jio-components.ejs.js +77 -0
- package/build/jio-datetime-box.d.ts +20 -0
- package/build/jio-eventbox.d.ts +16 -0
- package/build/jio-footer.d.ts +26 -0
- package/build/jio-improve-this-page.d.ts +19 -0
- package/build/jio-navbar-link.d.ts +22 -0
- package/build/jio-navbar.d.ts +52 -0
- package/build/jio-report-a-problem.d.ts +27 -0
- package/build/jio-socialmedia-buttons.d.ts +15 -0
- package/build/jio-weather-icon.d.ts +20 -0
- package/build/shared-styles.d.ts +2 -0
- package/custom-elements.json +1372 -0
- package/package.json +141 -0
package/package.json
ADDED
|
@@ -0,0 +1,141 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@jenkinsci/jenkins-io-components",
|
|
3
|
+
"version": "1.11.0",
|
|
4
|
+
"description": "Random parts shared between jenkins.io",
|
|
5
|
+
"publishConfig": {
|
|
6
|
+
"access": "public"
|
|
7
|
+
},
|
|
8
|
+
"main": "build/jio-components.cjs.js",
|
|
9
|
+
"module": "build/jio-components.ejs.js",
|
|
10
|
+
"type": "module",
|
|
11
|
+
"browserslist": [
|
|
12
|
+
"last 2 versions",
|
|
13
|
+
"iOS >= 8"
|
|
14
|
+
],
|
|
15
|
+
"scripts": {
|
|
16
|
+
"dev": "rollup -c --watch",
|
|
17
|
+
"build": "rollup -c",
|
|
18
|
+
"build:watch": "rollup -c --watch",
|
|
19
|
+
"clean": "rimraf build jio-*.{d.ts,d.ts.map,js,js.map} test/jio-*.{d.ts,d.ts.map,js,js.map} test/jio-*_test.{d.ts,d.ts.map,js,js.map} shared-styles.{d.ts,d.ts.map,js,js.map}",
|
|
20
|
+
"lint": "npm run lint:eslint && npm run lint:css",
|
|
21
|
+
"lint:eslint": "eslint .",
|
|
22
|
+
"lint:css": "stylelint \"src/**/*.css\"",
|
|
23
|
+
"format": "prettier \"**/*.{cjs,html,js,json,md,ts}\" --ignore-path ./.eslintignore --write",
|
|
24
|
+
"analyze": "cem analyze --litelement --globs \"src/*.ts\"",
|
|
25
|
+
"analyze:watch": "cem analyze --litelement --globs \"src/*.ts\" --watch",
|
|
26
|
+
"serve": "wds --watch",
|
|
27
|
+
"serve:prod": "MODE=prod npm run serve",
|
|
28
|
+
"test": "npm run test:dev && npm run test:prod",
|
|
29
|
+
"test:dev": "wtr",
|
|
30
|
+
"test:watch": "wtr --watch",
|
|
31
|
+
"test:prod": "MODE=prod wtr",
|
|
32
|
+
"test:prod:watch": "MODE=prod wtr --watch",
|
|
33
|
+
"test-storybook": "test-storybook",
|
|
34
|
+
"semantic-release": "semantic-release",
|
|
35
|
+
"storybook": "npx storybook dev -p 6006",
|
|
36
|
+
"build-storybook": "npm run analyze && npx storybook build"
|
|
37
|
+
},
|
|
38
|
+
"keywords": [
|
|
39
|
+
"jenkins-infra",
|
|
40
|
+
"web-components",
|
|
41
|
+
"lit-element",
|
|
42
|
+
"typescript",
|
|
43
|
+
"lit"
|
|
44
|
+
],
|
|
45
|
+
"release": {
|
|
46
|
+
"branches": [
|
|
47
|
+
"main"
|
|
48
|
+
]
|
|
49
|
+
},
|
|
50
|
+
"author": "Gavin Mogan <npm@gavinmogan.com> (https://www.gavinmogan.com/)",
|
|
51
|
+
"license": "MIT",
|
|
52
|
+
"dependencies": {
|
|
53
|
+
"lit": "^2.4.0",
|
|
54
|
+
"outdent": "^0.8.0"
|
|
55
|
+
},
|
|
56
|
+
"devDependencies": {
|
|
57
|
+
"@babel/core": "^7.19.3",
|
|
58
|
+
"@custom-elements-manifest/analyzer": "^0.6.4",
|
|
59
|
+
"@open-wc/testing": "^3.1.6",
|
|
60
|
+
"@rollup/plugin-babel": "^6.0.0",
|
|
61
|
+
"@rollup/plugin-node-resolve": "^14.1.0",
|
|
62
|
+
"@rollup/plugin-replace": "^4.0.0",
|
|
63
|
+
"@rollup/plugin-typescript": "^8.5.0",
|
|
64
|
+
"@storybook/addon-a11y": "^7.0.0-alpha.46",
|
|
65
|
+
"@storybook/addon-actions": "^7.0.0-alpha.46",
|
|
66
|
+
"@storybook/addon-coverage": "^0.0.5",
|
|
67
|
+
"@storybook/addon-essentials": "^7.0.0-alpha.46",
|
|
68
|
+
"@storybook/addon-interactions": "^7.0.0-alpha.46",
|
|
69
|
+
"@storybook/addon-links": "^7.0.0-alpha.46",
|
|
70
|
+
"@storybook/addon-postcss": "^3.0.0-alpha.1",
|
|
71
|
+
"@storybook/builder-webpack5": "^7.0.0-alpha.46",
|
|
72
|
+
"@storybook/cli": "^7.0.0-alpha.46",
|
|
73
|
+
"@storybook/manager-webpack5": "^6.5.13",
|
|
74
|
+
"@storybook/test-runner": "^0.9.0",
|
|
75
|
+
"@storybook/testing-library": "^0.0.13",
|
|
76
|
+
"@storybook/web-components": "^7.0.0-alpha.46",
|
|
77
|
+
"@storybook/web-components-webpack5": "^7.0.0-alpha.46",
|
|
78
|
+
"@typescript-eslint/eslint-plugin": "^5.39.0",
|
|
79
|
+
"@typescript-eslint/parser": "^5.39.0",
|
|
80
|
+
"@web/dev-server": "^0.1.34",
|
|
81
|
+
"@web/dev-server-esbuild": "^0.3.2",
|
|
82
|
+
"@web/dev-server-legacy": "^1.0.1",
|
|
83
|
+
"@web/rollup-plugin-html": "^1.11.0",
|
|
84
|
+
"@web/rollup-plugin-polyfills-loader": "^1.3.1",
|
|
85
|
+
"@web/test-runner": "^0.14.0",
|
|
86
|
+
"@web/test-runner-playwright": "^0.8.10",
|
|
87
|
+
"@webcomponents/webcomponentsjs": "^2.6.0",
|
|
88
|
+
"autoprefixer": "^10.4.12",
|
|
89
|
+
"babel-loader": "^8.2.5",
|
|
90
|
+
"concurrently": "^7.5.0",
|
|
91
|
+
"eslint": "^8.25.0",
|
|
92
|
+
"eslint-config-prettier": "^8.5.0",
|
|
93
|
+
"eslint-plugin-lit": "^1.6.1",
|
|
94
|
+
"eslint-plugin-storybook": "^0.6.6",
|
|
95
|
+
"eslint-plugin-wc": "^1.3.2",
|
|
96
|
+
"http-server": "^14.1.1",
|
|
97
|
+
"lint-staged": "^13.0.3",
|
|
98
|
+
"lit-css-loader": "^2.0.0",
|
|
99
|
+
"lit-html": "^2.4.0",
|
|
100
|
+
"postcss": "^8.4.17",
|
|
101
|
+
"postcss-lit": "^0.5.0",
|
|
102
|
+
"prettier": "^2.7.1",
|
|
103
|
+
"rimraf": "^3.0.2",
|
|
104
|
+
"rollup": "^2.79.1",
|
|
105
|
+
"rollup-plugin-execute": "^1.1.1",
|
|
106
|
+
"rollup-plugin-lit-css": "^4.0.0",
|
|
107
|
+
"rollup-plugin-minify-html-literals": "^1.2.6",
|
|
108
|
+
"rollup-plugin-summary": "^1.4.3",
|
|
109
|
+
"rollup-plugin-terser": "^7.0.2",
|
|
110
|
+
"sass": "^1.55.0",
|
|
111
|
+
"semantic-release": "^19.0.5",
|
|
112
|
+
"sinon": "^14.0.1",
|
|
113
|
+
"storybook": "^7.0.0-alpha.46",
|
|
114
|
+
"storybook-dark-mode": "^1.1.2",
|
|
115
|
+
"stylelint": "^14.13.0",
|
|
116
|
+
"stylelint-config-prettier": "^9.0.3",
|
|
117
|
+
"stylelint-config-recommended": "^9.0.0",
|
|
118
|
+
"stylelint-config-sass-guidelines": "^9.0.1",
|
|
119
|
+
"stylelint-config-styled-components": "^0.1.1",
|
|
120
|
+
"stylelint-prettier": "^2.0.0",
|
|
121
|
+
"typescript": "~4.8.4",
|
|
122
|
+
"wait-on": "^6.0.1",
|
|
123
|
+
"webpack": "^5.74.0"
|
|
124
|
+
},
|
|
125
|
+
"customElements": "custom-elements.json",
|
|
126
|
+
"files": [
|
|
127
|
+
"build/jio-*.d.ts",
|
|
128
|
+
"build/jio-*.d.ts.map",
|
|
129
|
+
"build/jio-*.js",
|
|
130
|
+
"build/jio-*.js.map",
|
|
131
|
+
"build/shared-*.d.ts",
|
|
132
|
+
"build/shared-*.d.ts.map",
|
|
133
|
+
"build/shared-*.js",
|
|
134
|
+
"build/shared-*.js.map",
|
|
135
|
+
"custom-elements.json",
|
|
136
|
+
"makeLayout.js"
|
|
137
|
+
],
|
|
138
|
+
"lint-staged": {
|
|
139
|
+
"*.{js,jsx,ts,tsx}": "npm run lint --"
|
|
140
|
+
}
|
|
141
|
+
}
|