-
Notifications
You must be signed in to change notification settings - Fork 64
/
package.json
98 lines (98 loc) · 2.6 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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
{
"name": "@adobe/aem-cli",
"version": "16.7.25",
"description": "AEM CLI",
"main": "index.js",
"type": "module",
"bin": {
"aem": "./index.js",
"hlx": "./index.js"
},
"scripts": {
"check": "npm run lint && npm run test",
"test": "c8 mocha",
"test-ci-win": "npx mocha --reporter xunit test --reporter-options output=junit/test.xml -t 5000",
"lint": "eslint .",
"semantic-release": "semantic-release",
"semantic-release-dry": "semantic-release --dry-run --branches $CI_BRANCH",
"prepare": "husky"
},
"mocha": {
"require": "test/setup-env.js",
"recursive": "true",
"reporter": "mocha-multi-reporters",
"reporter-options": "configFile=.mocha-multi.json",
"loader": "esmock"
},
"repository": {
"type": "git",
"url": "https://github.com/adobe/helix-cli.git"
},
"author": "",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/adobe/helix-cli/issues"
},
"homepage": "https://github.com/adobe/helix-cli#readme",
"engines": {
"node": ">=18"
},
"dependencies": {
"@adobe/fetch": "4.1.9",
"@adobe/helix-log": "6.0.5",
"@adobe/helix-shared-config": "11.0.10",
"@adobe/helix-shared-git": "3.0.16",
"@adobe/helix-shared-indexer": "2.2.1",
"camelcase": "8.0.0",
"chalk-template": "1.1.0",
"chokidar": "4.0.1",
"compression": "1.7.5",
"cookie": "1.0.2",
"cookie-parser": "1.4.7",
"dotenv": "16.4.5",
"express": "4.21.1",
"faye-websocket": "0.11.4",
"fs-extra": "11.2.0",
"glob": "11.0.0",
"glob-to-regexp": "0.4.1",
"hast-util-select": "6.0.3",
"http-proxy-agent": "7.0.2",
"https-proxy-agent": "7.0.5",
"ignore": "6.0.2",
"ini": "5.0.0",
"isomorphic-git": "1.27.1",
"livereload-js": "4.0.2",
"node-fetch": "3.3.2",
"open": "10.1.0",
"progress": "2.0.3",
"proxy-agent": "6.4.0",
"proxy-from-env": "1.1.0",
"rehype-parse": "9.0.1",
"semver": "7.6.3",
"shelljs": "0.8.5",
"unified": "11.0.5",
"uuid": "11.0.3",
"yargs": "17.7.2"
},
"devDependencies": {
"@adobe/eslint-config-helix": "2.0.8",
"@adobe/helix-shared-dom": "2.0.8",
"@semantic-release/changelog": "6.0.3",
"@semantic-release/git": "10.0.1",
"c8": "10.1.2",
"eslint": "8.57.1",
"esmock": "2.6.9",
"husky": "9.1.7",
"junit-report-builder": "5.1.1",
"lint-staged": "15.2.10",
"mocha": "10.8.2",
"mocha-multi-reporters": "1.5.1",
"nock": "13.5.6",
"semantic-release": "24.2.0",
"semantic-release-discord-bot": "^1.1.0",
"sinon": "19.0.2"
},
"lint-staged": {
"*.js": "eslint"
}
}