-
Notifications
You must be signed in to change notification settings - Fork 33
/
package.json
65 lines (65 loc) · 1.45 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
{
"name": "aem-clientlib-generator",
"version": "1.8.0",
"description": "Creates configuration files for AEM ClientLibs and synchronizes assets.",
"author": {
"name": "pro!vision GmbH",
"url": "http://www.pro-vision.de"
},
"contributors": [
{
"name": "Ingo Fahrentholz",
"email": "[email protected]"
},
{
"name": "Masoud Rozati",
"email": "[email protected]"
},
{
"name": "Mehran Behzad",
"email": "[email protected]"
},
{
"name": "Bert-Ulrich Baumann",
"email": "[email protected]"
}
],
"homepage": "https://github.com/wcm-io-frontend/aem-clientlib-generator",
"bugs": {
"url": "https://github.com/wcm-io-frontend/aem-clientlib-generator/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/wcm-io-frontend/aem-clientlib-generator.git"
},
"engines": {
"node": ">=10.19.0"
},
"keywords": [
"aem",
"clientlib",
"clientlibs",
"generator",
"sync"
],
"main": "lib/clientlib.js",
"bin": {
"clientlib": "bin/clientlib-cli.js"
},
"dependencies": {
"async": "^3.2.3",
"fs-extra": "9.0.1",
"glob": "7.1.6",
"lodash": "4.17.21",
"yargs": "^16.2.0"
},
"devDependencies": {
"klaw": "3.0.0",
"mocha": "7.1.1"
},
"license": "Apache-2.0",
"scripts": {
"test": "mocha",
"build": "bin/clientlib-cli.js test/clientlib.config.js --verbose"
}
}