-
Notifications
You must be signed in to change notification settings - Fork 44
Expand file tree
/
Copy pathpackage.json
More file actions
174 lines (174 loc) · 5.73 KB
/
Copy pathpackage.json
File metadata and controls
174 lines (174 loc) · 5.73 KB
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
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
{
"name": "@genesys/common-webcomponents",
"version": "2.33.2",
"description": "Common webcomponents",
"license": "MIT",
"main": "dist/stencil-wrapper.js",
"types": "dist/types/index.d.ts",
"collection": "dist/collection/collection-manifest.json",
"files": [
"dist/"
],
"scripts": {
"build": "npm run clean && npm run i18n && npm run stencil && npm run docs && npm run build-wrapper",
"build-wrapper": "./scripts/wrap-stencil.js",
"check-readmes": "./scripts/check-readmes.sh",
"clean": "rm -r ./dist || true",
"commit": "git-cz",
"create-component": "node scripts/create-component.js",
"dev": "npx concurrently \"npm run stencil.dev\" \"npm run docs.dev\"",
"dev.public": "npx concurrently \"npm run stencil.dev\" \"npm run docs.dev.public\"",
"docs": "cd ./docs && npm run build",
"docs.dev": "cd ./docs && npm run start",
"docs.dev.public": "cd ./docs && npm run start -- --host 0.0.0.0",
"format": "prettier \"./**/*.{ts,tsx,js,jsx,json,css,html,less}\"",
"format.check": "npm run format -- --check",
"format.fix": "npm run format -- --write",
"generate-start-of-week-file": "./scripts/generate-start-of-week-file.js",
"i18n": "npm run generate-start-of-week-file && ./scripts/build-i18n.js",
"lint": "npm run lint.commit && npm run lint.ts && npm run lint.css && npm run lint.svg",
"lint.commit": "commitlint -f 811627c6ed30490b975acc4cbc2c2f4bac32e8ae",
"lint.css": "npx stylelint '**/*.{css,html,less}' --fix",
"lint.fix": "npm run lint.commit && npm run lint.ts -- --fix && npm run lint.css -- --fix",
"lint.svg": "svgo -f ./src/components/stable/gux-icon/icons --multipass -q",
"lint.ts": "tslint --project .",
"list-component-tracking": "./scripts/list-component-tracking.js",
"list-shadow-dom-enabled": "./scripts/list-shadow-dom-enabled.js",
"list-i18n-files": "./scripts/list-i18n-files.js",
"predev": "npm run i18n",
"predev.public": "npm run predev",
"prepare": "./scripts/prepare-docs.sh && npm run i18n && husky install",
"release": "standard-version",
"stencil": "stencil build --prod",
"stencil.dev": "stencil build --dev --watch --docs",
"test": "stencil test --spec --e2e",
"test.ci": "npm run test.ci.spec && npm run test.ci.e2e",
"test.ci.spec": "stencil test --spec",
"test.ci.e2e": "stencil test --e2e --max-workers=1",
"test.e2e": "stencil test --e2e",
"test.e2e.update-snapshot": "stencil test --e2e --updateSnapshot",
"test.screenshot": "stencil test --e2e --screenshot",
"test.unit": "stencil build dev && stencil test --spec",
"test.unit.update-snapshot": "stencil test --spec --updateSnapshot",
"test.update-snapshot": "stencil test --spec --e2e --updateSnapshot",
"test.watch": "stencil test --spec --e2e --watchAll"
},
"dependencies": {
"@popperjs/core": "^2.9.3",
"intl-messageformat": "~9.4.9",
"requestanimationframe-timer": "^3.0.3",
"sortablejs": "^1.14.0",
"stencil-click-outside": "^1.7.1"
},
"devDependencies": {
"@babel/core": "^7.15.0",
"@babel/preset-env": "^7.15.0",
"@commitlint/cli": "^12.1.4",
"@commitlint/config-conventional": "^12.1.4",
"@rollup/plugin-replace": "^2.4.2",
"@stencil/core": "^2.6.0",
"@stencil/less": "^1.0.0",
"@stencil/utils": "0.0.5",
"@types/jest": "^26.0.24",
"@types/jsdom": "^16.2.13",
"@types/new-relic-browser": "^0.1118.2",
"@types/puppeteer": "^3.0.6",
"@types/resize-observer-browser": "^0.1.6",
"@types/sortablejs": "^1.10.7",
"axe-live": "0.0.8",
"babel-loader": "^8.2.2",
"commitizen": "^4.2.4",
"concurrently": "^6.2.1",
"cz-conventional-changelog": "^3.3.0",
"file-loader": "^6.2.0",
"glob": "^7.1.7",
"handlebars": "^4.7.7",
"husky": "^6.0.0",
"inquirer": "^8.1.2",
"jest": "^26.6.3",
"jest-cli": "^26.6.3",
"jest-config": "^26.6.3",
"jest-environment-node": "^26.6.2",
"jest-junit": "^12.2.0",
"jsdom": "^16.7.0",
"lint-staged": "^11.1.2",
"marked": "^2.1.3",
"mutation-observer": "^1.0.3",
"prettier": "^2.3.2",
"puppeteer": "4.0.1",
"rollup": "^2.56.2",
"rollup-plugin-copy": "^3.4.0",
"rollup-plugin-less": "^1.1.3",
"standard-version": "^9.3.1",
"stylelint": "^13.13.1",
"stylelint-config-prettier": "^8.0.2",
"stylelint-config-recess-order": "^2.5.0",
"stylelint-config-standard": "^22.0.0",
"svgo": "^2.4.0",
"ts-loader": "^9.2.5",
"tslint": "^6.1.3",
"tslint-config-prettier": "^1.18.0",
"typescript": "^3.9.10",
"vega": "^5.19.1",
"vega-embed": "^6.18.2",
"vega-lite": "5.0.0",
"weekstart": "^1.1.0",
"xmldom": "^0.6.0"
},
"repository": {
"type": "git",
"url": "git+bitbucket.org:inindca/genesys-webcomponents.git"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
],
"rules": {
"subject-case": [
2,
"never",
[
"pascal-case",
"upper-case"
]
]
}
},
"stylelint": {
"extends": [
"stylelint-config-standard",
"stylelint-config-recess-order",
"stylelint-config-prettier"
],
"rules": {
"no-descending-specificity": null,
"no-duplicate-selectors": null,
"selector-type-no-unknown": [
true,
{
"ignoreTypes": [
"/^gux-/",
"lineargradient"
]
}
]
}
},
"lint-staged": {
"*.{css,html,less}": [
"stylelint --fix",
"prettier --write"
],
"*.{ts,tsx}": [
"tslint --fix",
"prettier --write"
],
"*.{js,jsx,json}": "prettier --write",
"*.svg": "svgo -i"
}
}