-
-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
55 lines (55 loc) · 1.54 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
{
"name": "openui5-validator",
"version": "1.0.0",
"description": "An OpenUI5 library to validate fields",
"homepage": "https://github.com/mauriciolauffer/openui5-validator#readme",
"author": "Mauricio Lauffer",
"license": "MIT",
"keywords": [
"openui5",
"sapui5",
"ui5",
"ui5lab",
"validate",
"validator",
"validation"
],
"main": "dist/resources/openui5/validator/library-preload.js",
"browser": "dist/resources/openui5/validator/library-preload.js",
"files": [
"dist",
"src",
"ui5.yaml"
],
"dependencies": {
"ajv": "^6.12.6"
},
"devDependencies": {
"@openui5/ts-types": "^1.120.1",
"@wdio/cli": "^8.24.12",
"@wdio/devtools-service": "^8.24.12",
"@wdio/local-runner": "^8.24.12",
"@wdio/mocha-framework": "^8.24.12",
"@wdio/spec-reporter": "^8.24.12",
"eslint": "^8.55.0",
"eslint-config-mlauffer-ui5": "^0.5.2",
"eslint-plugin-wdio": "^8.24.12",
"wdio-qunit-service": "^0.1.1"
},
"scripts": {
"start": "ui5 serve",
"start:dist": "ui5 serve --config ui5-dist.yaml",
"build": "ui5 build --clean-dest",
"lint": "eslint src test demo --cache",
"lint:ci": "eslint src test demo -f @microsoft/eslint-formatter-sarif -o eslint.sarif",
"test": "wdio run ./test/wdio.conf.mjs --watch",
"test:ci": "wdio run ./test/wdio.conf.mjs"
},
"repository": {
"type": "git",
"url": "https://github.com/mauriciolauffer/openui5-validator.git"
},
"bugs": {
"url": "https://github.com/mauriciolauffer/openui5-validator/issues"
}
}