-
-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
52 lines (52 loc) · 1.62 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
{
"name": "openui5-model-json-crud",
"version": "1.0.0",
"description": "An OpenUI5 library which extends JSONModel to support CRUD (Create, Read, Update, Delete) operations.",
"homepage": "https://github.com/mauriciolauffer/openui5-model-json-crud#readme",
"author": "Mauricio Lauffer",
"license": "MIT",
"keywords": [
"openui5",
"sapui5",
"ui5",
"ui5lab",
"model",
"JSON",
"CRUD"
],
"main": "dist/resources/openui5/model/json/crud/library-preload.js",
"browser": "dist/resources/openui5/model/json/crud/library-preload.js",
"files": [
"dist",
"src",
"ui5.yaml"
],
"devDependencies": {
"@openui5/ts-types": "^1.120.1",
"@wdio/cli": "^8.24.6",
"@wdio/devtools-service": "^8.24.6",
"@wdio/local-runner": "^8.24.6",
"@wdio/mocha-framework": "^8.24.6",
"@wdio/spec-reporter": "^8.24.2",
"eslint": "^8.55.0",
"eslint-config-mlauffer-ui5": "^0.5.2",
"eslint-plugin-wdio": "^8.20.0",
"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/openui5/model/json/crud/wdio.conf.mjs --watch",
"test:ci": "wdio run ./test/openui5/model/json/crud/wdio.conf.mjs"
},
"repository": {
"type": "git",
"url": "https://github.com/mauriciolauffer/openui5-model-json-crud.git"
},
"bugs": {
"url": "https://github.com/mauriciolauffer/openui5-model-json-crud/issues"
}
}