forked from gavoja/aemsync
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.3 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.3 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
{
"name": "aemsync",
"version": "5.2.0",
"description": "The code and content synchronization for Sling / AEM (Adobe Experience Manager).",
"author": "Michal Kochel",
"type": "module",
"keywords": [
"Adobe",
"AEM",
"CQ",
"Sling",
"Synchronization"
],
"homepage": "https://github.com/gavoja/aemsync",
"bugs": {
"url": "https://github.com/gavoja/aemsync/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/gavoja/aemsync.git"
},
"main": "src/index.js",
"devDependencies": {
"dotenv": "^17.2.1",
"dotenv-cli": "^10.0.0",
"fs-extra": "^11.3.1",
"release-it": "^19.0.4",
"standard": "^17.1.2"
},
"dependencies": {
"adm-zip": "^0.5.16",
"globrex": "^0.1.2",
"xml-to-json-stream": "^1.1.0"
},
"scripts": {
"start": "node ./bin/aemsync.js",
"lint": "npx standard",
"format": "npx standard --fix",
"test": "node --test --test-reporter=spec --test-reporter-destination=stdout --experimental-test-coverage --test-coverage-exclude \"test/**/*\"",
"release": "dotenv release-it",
"release:ci": "dotenv release-it --ci",
"release:dry": "dotenv release-it --dry-run"
},
"engines": {
"node": ">=16.16.0"
},
"bin": {
"aemsync": "./bin/aemsync.js"
},
"license": "MIT",
"false": {}
}