-
Notifications
You must be signed in to change notification settings - Fork 113
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.06 KB
/
package.json
File metadata and controls
44 lines (44 loc) · 1.06 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
{
"name": "@ui5/webcomponents-cypress-commands",
"description": "Cypress Custom Commands and Queries for UI5 Web Components",
"author": "SAP SE (https://www.sap.com)",
"license": "Apache-2.0",
"version": "2.17.0",
"type": "module",
"types": "./dist/index.d.ts",
"main": "./dist/index.js",
"exports": {
".": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
},
"./package.json": "./package.json"
},
"repository": {
"type": "git",
"url": "https://github.com/UI5/webcomponents-react",
"directory": "packages/cypress-commands"
},
"scripts": {
"clean": "rimraf dist api-commands.json api-queries.json"
},
"peerDependencies": {
"@ui5/webcomponents": "~2.17.0 || ~2.18.0",
"@ui5/webcomponents-base": "~2.17.0 || ~2.18.0",
"cypress": "^12 || ^13 || ^14 || ^15"
},
"peerDependenciesMeta": {
"@ui5/webcomponents": {
"optional": true
},
"@ui5/webcomponents-base": {
"optional": true
}
},
"publishConfig": {
"access": "public"
},
"files": [
"dist"
]
}