-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpackage.json
60 lines (60 loc) · 1.99 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
{
"name": "@db-ui/elements",
"version": "0.0.0",
"description": "Web Components Library by Deutsche Bahn, part of DB UX Design System",
"main": "./dist/index.cjs.js",
"module": "./dist/index.js",
"es2015": "./dist/esm/index.js",
"es2017": "dist/esm/index.js",
"types": "dist/types/index.d.ts",
"collection": "dist/collection/collection-manifest.json",
"collection:main": "dist/collection/index.js",
"unpkg": "dist/db-ui-elements/db-ui-elements.js",
"files": [
"dist/",
"loader/"
],
"scripts": {
"build": "stencil build --docs",
"build.default": "npm run build",
"build.enterprise": "npm run build enterprise",
"build.watch": "stencil build --watch",
"build.watch.enterprise": "npm run build.watch enterprise",
"build.watch.local": "npm run build.watch enterprise",
"lint": "eslint src/**/*{.ts,.tsx}",
"validate": "lint-staged && npm run lint",
"start-stencil": "stencil build --dev --watch --serve",
"clean-start": "rm -rf dist loader node_modules www && npm ci && npm run build && npm run start -- --no-manager-cache",
"test": "stencil test --spec --coverage",
"test.watch": "stencil test --spec --watchAll",
"generate": "stencil generate",
"start": "npm run start-stencil"
},
"devDependencies": {
"@faker-js/faker": "^9.2.0",
"@stencil-community/eslint-plugin": "0.9.0",
"@stencil/angular-output-target": "0.8.4",
"@stencil/core": "4.20.0",
"@stencil/react-output-target": "0.5.3",
"@stencil/sass": "3.0.12",
"@stencil/vue-output-target": "0.8.9",
"@types/jest": "28.1.8",
"jest": "29.7.0",
"jest-cli": "29.7.0",
"jest-junit": "16.0.0",
"puppeteer": "^23.8.0"
},
"dependencies": {
"@db-ui/core": "^3.2.7"
},
"license": "Apache-2.0",
"publishConfig": {
"registry": "https://registry.npmjs.org/",
"access": "public"
},
"repository": {
"type": "git",
"url": "https://github.com/db-ui/elements.git"
},
"homepage": "https://db-ui.github.io/elements/"
}