forked from mauriciolauffer/openui5-validator
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.38 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 1.38 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
{
"name": "openui5-validator",
"version": "0.1.18",
"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",
"files": [
"dist",
"src",
"ui5.yaml"
],
"dependencies": {
"ajv": "^6.12.6"
},
"devDependencies": {
"@openui5/ts-types": "^1.60.5",
"eslint": "^7.21.0",
"eslint-config-mlauffer-ui5": "0.0.4",
"karma": "^6.1.1",
"karma-chrome-launcher": "^3.1.0",
"karma-coverage": "^2.0.3",
"karma-coveralls": "^2.1.0",
"karma-ui5": "^2.3.3"
},
"scripts": {
"start": "ui5 serve",
"build": "ui5 build --clean-dest",
"lint": "eslint src && eslint test",
"lint-fix": "eslint src --fix && eslint test --fix",
"test": "karma start",
"test-ci": "karma start karma.ci.conf",
"preversion": "npm run test-ci",
"version": "npm run build && git add -A dist",
"postversion": "git push && git push --tags"
},
"repository": {
"type": "git",
"url": "https://github.com/mauriciolauffer/openui5-validator.git"
},
"bugs": {
"url": "https://github.com/mauriciolauffer/openui5-validator/issues"
}
}