This repository has been archived by the owner on Nov 10, 2020. It is now read-only.
forked from Jbcampbe/genesys-webcomponents
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
168 lines (168 loc) · 5.17 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
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
{
"name": "@genesys/common-webcomponents",
"version": "1.9.0",
"description": "Common webcomponents",
"main": "dist/stencil-wrapper.js",
"types": "dist/types/index.d.ts",
"collection": "dist/collection/collection-manifest.json",
"files": [
"dist/"
],
"scripts": {
"build": "npm run i18n && npm run stencil && npm run docs && npm run build-wrapper",
"build-wrapper": "./scripts/wrap-stencil.js",
"commit": "git-cz",
"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",
"release": "standard-version",
"stencil": "stencil build --prod",
"stencil.dev": "stencil build --dev --watch --docs",
"test.unit": "stencil test --spec",
"test.unit.update-snapshot": "stencil test --spec --updateSnapshot",
"test.e2e": "stencil test --e2e",
"test.e2e.update-snapshot": "stencil test --e2e --updateSnapshot",
"test.screenshot": "stencil test --e2e --screenshot",
"test.update-snapshot": "stencil test --spec --e2e --updateSnapshot",
"test": "stencil test --spec --e2e",
"test.watch": "stencil test --spec --e2e --watchAll",
"create-component": "node scripts/create-component.js",
"predev": "npm run i18n",
"dev": "./node_modules/.bin/concurrently \"npm run stencil.dev\" \"npm run docs.dev\"",
"predev.public": "npm run predev",
"dev.public": "./node_modules/.bin/concurrently \"npm run stencil.dev\" \"npm run docs.dev.public\"",
"format": "prettier \"./**/*.{ts,tsx,js,jsx,json,css,html,less}\"",
"format.fix": "npm run format -- --write",
"format.check": "npm run format -- --check",
"lint": "npm run lint.commit && npm run lint.ts && npm run lint.css",
"lint.fix": "npm run lint.commit && npm run lint.ts -- --fix && npm run lint.css -- --fix",
"lint.ts": "tslint --project .",
"lint.commit": "commitlint -f 811627c6ed30490b975acc4cbc2c2f4bac32e8ae",
"lint.css": "npx stylelint '**/*.{css,html,less}'",
"prepare": "./scripts/prepare-docs.sh && npm run i18n",
"i18n": "./scripts/build-i18n.js",
"list-i18n-files": "./scripts/list-i18n-files.js",
"check-readmes": "./scripts/check-readmes.sh"
},
"dependencies": {
"@popperjs/core": "^2.4.4",
"intl-messageformat": "^9.0.2",
"sortablejs": "^1.10.2",
"stencil-click-outside": "^1.7.0"
},
"devDependencies": {
"@babel/core": "^7.10.4",
"@babel/preset-env": "^7.10.4",
"@commitlint/cli": "^9.0.1",
"@commitlint/config-conventional": "^9.0.1",
"@rollup/plugin-replace": "^2.3.3",
"@stencil/core": "^1.16.0",
"@stencil/less": "^1.0.0",
"@stencil/utils": "0.0.5",
"@stencil/webpack": "0.0.6",
"@types/jest": "^26.0.4",
"@types/puppeteer": "3.0.1",
"@types/resize-observer-browser": "^0.1.3",
"@types/sortablejs": "^1.10.4",
"babel-loader": "^8.1.0",
"commitizen": "^4.1.2",
"concurrently": "^5.2.0",
"css-loader": "^3.6.0",
"cz-conventional-changelog": "^3.2.0",
"file-loader": "^6.0.0",
"glob": "^7.1.6",
"handlebars": "^4.7.6",
"husky": "^4.2.5",
"inquirer": "^7.3.0",
"jest": "^26.1.0",
"jest-cli": "^26.1.0",
"jest-config": "^26.1.0",
"jest-environment-node": "^26.1.0",
"jest-junit": "^11.0.1",
"lint-staged": "^10.2.11",
"mutation-observer": "^1.0.3",
"prettier": "^2.0.5",
"puppeteer": "4.0.1",
"rollup-plugin-copy": "^3.3.0",
"rollup-plugin-less": "^1.1.2",
"standard-version": "^8.0.0",
"style-loader": "^1.2.1",
"stylelint": "^13.7.2",
"stylelint-config-prettier": "^8.0.2",
"stylelint-config-standard": "^20.0.0",
"svgo": "^1.3.2",
"ts-loader": "^7.0.5",
"tslint": "^6.1.2",
"tslint-config-prettier": "^1.18.0",
"typescript": "~3.5.3",
"webpack": "^4.43.0",
"webpack-dev-server": "^3.11.0",
"xmldom": "^0.3.0"
},
"repository": {
"type": "git",
"url": "git+bitbucket.org:inindca/genesys-webcomponents.git"
},
"optionalDependencies": {
"@purecloud/web-app-deploy": "^5.2.10"
},
"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-prettier"
],
"rules": {
"block-no-empty": null,
"declaration-block-no-duplicate-properties": null,
"no-descending-specificity": null,
"no-duplicate-selectors": null,
"selector-type-no-unknown": [
true,
{
"ignoreTypes": [
"/^gux-/",
"lineargradient"
]
}
]
}
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"lint-staged": {
"*.{css,html,less}": [
"stylelint --fix",
"prettier --write"
],
"*.{ts,tsx}": [
"tslint --fix",
"prettier --write"
],
"*.{js,jsx,json}": "prettier --write",
"*.svg": "svgo -i"
}
}