-
Notifications
You must be signed in to change notification settings - Fork 176
/
composer.json
55 lines (55 loc) · 1.3 KB
/
composer.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
{
"name": "libimobiledevice/libimobiledevice.github.io",
"description": "Official libimobiledevice website sources",
"version": "1.0",
"keywords": [
"libimobiledevice",
"website",
"static-site",
"markdown",
"twig"
],
"homepage": "https://libimobiledevice.org",
"license": "AGPL-3.0-or-later",
"type": "project",
"authors": [
{
"name": "Martin Szulecki",
"email": "[email protected]",
"homepage": "https://libimobiledevice.org",
"role": "Maintainer"
}
],
"support": {
"source": "https://github.com/libimobiledevice/libimobiledevice.github.io",
"issues": "https://github.com/libimobiledevice/libimobiledevice.github.io/issues"
},
"scripts": {
"yarn-install": [
"if [ ! -f ./yarn.lock ]; then yarn --silent install; else yarn --silent upgrade; fi"
],
"yarn-build": [
"yarn --silent build:${PROJECT_ENVIRONMENT:-development}"
],
"build": [
"cecil build"
],
"watch": [
"cecil serve"
],
"post-install-cmd": [
],
"post-update-cmd": [
]
},
"require": {
"php": ">=7.1",
"ext-intl": "*",
"ext-gettext": "*",
"cecil/cecil": "^5.33.0",
"yosymfony/resource-watcher": "3.0.0 as 2.0.1",
"twig/extensions": "^1.5"
},
"require-dev": {
}
}