forked from mauriciolauffer/openui5-model-json-crud
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
53 lines (53 loc) · 1.53 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
{
"name": "openui5-model-json-crud",
"version": "0.0.15",
"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",
"files": [
"dist",
"src",
"ui5.yaml"
],
"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-junit-reporter": "^2.0.1",
"karma-ui5": "^2.3.3"
},
"scripts": {
"start": "ui5 serve",
"build": "ui5 build --clean-dest",
"test": "karma start",
"lint": "eslint src && eslint test",
"lint-fix": "eslint src --fix && eslint test --fix",
"lint-ci": "eslint -f json src > reports/lint.json",
"test-ci": "karma start karma.ci.conf && npm run lint-ci",
"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-model-json-crud.git"
},
"bugs": {
"url": "https://github.com/mauriciolauffer/openui5-model-json-crud/issues"
}
}