-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.77 KB
/
Copy pathpackage.json
File metadata and controls
61 lines (61 loc) · 1.77 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
55
56
57
58
59
60
61
{
"name": "ui5-fontawesome-lib",
"version": "1.0.2",
"description": "UI5 Library: Font Awesome icons integration for SAP UI5/OpenUI5 applications",
"author": "Mario Kernich",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "https://github.com/ui5-community/ui5-fontawesome-lib.git"
},
"keywords": [
"ui5",
"openui5",
"sapui5",
"fontawesome",
"icons",
"sap",
"typescript"
],
"main": "dist/resources/fontawesome/icons/lib/library.js",
"types": "dist/index.d.ts",
"files": [
"dist/**/*",
"src/**/*",
"LICENSE",
"README.md",
"ui5.yaml",
"tsconfig.json"
],
"scripts": {
"build": "npm run build:icons && ui5 build --clean-dest",
"build:icons": "node scripts/generate.js",
"start": "npm run build:icons && ui5 serve -o test-resources/fontawesome/icons/lib/IconListPreview.html --h2 --config ui5-test.yaml",
"check:ts": "tsc --noEmit",
"check:lint": "eslint src test",
"check:ui5": "ui5lint",
"check:all": "npm run check:ts && npm run check:lint && npm run check:ui5",
"fix:lint": "eslint src test --fix",
"prepublishOnly": "npm run build",
"deploy": "node scripts/deploy.js",
"clean": "rimraf dist coverage",
"prepare": "husky"
},
"devDependencies": {
"@commitlint/cli": "latest",
"@commitlint/config-conventional": "latest",
"@fortawesome/fontawesome-free": "^7.0.0",
"@openui5/types": "^1.120.33",
"@ui5/cli": "latest",
"@ui5/linter": "latest",
"@ui5/ts-interface-generator": "latest",
"eslint": "^9.9.1",
"globals": "^15.9.0",
"husky": "latest",
"rimraf": "latest",
"typescript": "^5.5.4",
"typescript-eslint": "^8.3.0",
"ui5-middleware-livereload": "latest",
"ui5-tooling-transpile": "latest"
}
}