-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
50 lines (50 loc) · 1.23 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
{
"name": "openui5-error-collector",
"version": "1.1.0",
"description": "UI5 library to collect all javascript errors",
"author": "Mauricio Lauffer",
"license": "MIT",
"keywords": [
"openui5",
"sapui5",
"ui5",
"error",
"collector",
"exception",
"log",
"event"
],
"type": "module",
"main": "dist/ui5ErrorCollector.min.js",
"files": [
"dist"
],
"devDependencies": {
"@microsoft/eslint-formatter-sarif": "^3.0.0",
"@openui5/ts-types": "^1.111.1",
"@playwright/test": "^1.31.2",
"@types/node": "^18.15.3",
"eslint": "^8.36.0",
"eslint-config-mlauffer-ui5": "^0.3.3",
"gremlins.js": "^2.2.0",
"vite": "^4.1.4",
"vitest": "^0.29.2"
},
"scripts": {
"dev": "vite",
"build": "vite build",
"preview": "vite preview",
"test": "npm run lint",
"test:ui": "npx playwright test",
"lint": "eslint src",
"lint:fix": "eslint src --fix",
"lint:ci": "eslint src -f @microsoft/eslint-formatter-sarif -o target/eslint.sarif"
},
"repository": {
"type": "git",
"url": "https://github.com/mauriciolauffer/openui5-error-collector.git"
},
"bugs": {
"url": "https://github.com/mauriciolauffer/openui5-error-collector/issues"
}
}