-
-
Notifications
You must be signed in to change notification settings - Fork 54
/
package.json
81 lines (81 loc) · 2.28 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
{
"name": "cordova-plugin-lottie-splashscreen",
"version": "0.10.0",
"description": "Apache Cordova plugin to show Lottie animations as the splash screen with Airbnb's Lottie wrapper",
"author": "Tim Brust <[email protected]>",
"license": "MIT",
"types": "./types/index.d.ts",
"scripts": {
"prepare": "node -e \"import('husky').then(husky => husky.default()).catch(e => { if (e.code !== 'ERR_MODULE_NOT_FOUND') throw e })\"",
"build": "tsc",
"lint": "npm run lint:android && npm run lint:ios && npm run lint:typescript",
"lint:android": "ktlint src/android",
"lint:ios": "swiftlint",
"lint:typescript": "eslint 'www/**/*.ts'",
"prepublishOnly": "npm run build",
"release": "standard-version -s -a"
},
"devDependencies": {
"@commitlint/cli": "^19.5.0",
"@commitlint/config-angular": "^19.5.0",
"@eslint/js": "^9.11.0",
"@types/cordova": "^11.0.3",
"@types/eslint__js": "^8.42.3",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.2.1",
"husky": "^9.1.6",
"lint-staged": "^15.2.10",
"prettier": "^3.3.3",
"replace": "^1.2.2",
"standard-version": "^9.5.0",
"typescript": "^5.6.2",
"typescript-eslint": "^8.6.0"
},
"cordova": {
"id": "cordova-plugin-lottie-splashscreen",
"platforms": [
"android",
"ios"
]
},
"engines": {
"cordovaDependencies": {
">=0.8.0": {
"cordova": ">= 9.0.0",
"cordova-android": ">=8.0.0",
"cordova-ios": ">=5.0.0",
"apple-ios": ">=9.0.0"
},
">=0.9.0": {
"cordova": ">= 9.0.0",
"cordova-android": ">=9.0.0",
"cordova-ios": ">=5.0.0",
"apple-ios": ">=9.0.0"
},
">=0.10.0": {
"cordova": ">= 9.0.0",
"cordova-android": ">=9.0.0",
"cordova-ios": ">=5.0.0",
"apple-ios": ">=11.0.0"
}
}
},
"keywords": [
"cordova",
"cordova-plugin",
"ecosystem:cordova",
"cordova-android",
"cordova-ios",
"lottie",
"lottie-android",
"lottie-ios",
"bodymovin",
"swift",
"kotlin"
],
"repository": "timbru31/cordova-plugin-lottie-splashscreen",
"bugs": {
"url": "https://github.com/timbru31/cordova-plugin-lottie-splashscreen/issues"
},
"funding": "https://github.com/sponsors/timbru31"
}