-
Notifications
You must be signed in to change notification settings - Fork 66
/
Copy pathpackage.json
91 lines (91 loc) · 2.36 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
{
"name": "@adobe/helix-cli",
"version": "14.24.2",
"description": "Project Helix CLI",
"main": "index.js",
"type": "module",
"bin": {
"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",
"prepare": "husky install"
},
"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": ">=14"
},
"dependencies": {
"@adobe/fetch": "4.0.13",
"@adobe/helix-log": "6.0.0",
"@adobe/helix-shared-config": "10.2.3",
"@adobe/helix-shared-git": "3.0.1",
"@adobe/helix-shared-indexer": "2.0.8",
"camelcase": "7.0.1",
"chalk-template": "1.1.0",
"chokidar": "3.5.3",
"compression": "1.7.4",
"cookie": "0.5.0",
"cookie-parser": "1.4.6",
"dotenv": "16.3.1",
"express": "4.18.2",
"faye-websocket": "0.11.4",
"fs-extra": "11.1.1",
"glob": "10.2.7",
"glob-to-regexp": "0.4.1",
"hast-util-select": "5.0.5",
"ignore": "5.2.4",
"ini": "4.1.1",
"isomorphic-git": "1.24.1",
"livereload-js": "4.0.1",
"open": "9.1.0",
"progress": "2.0.3",
"rehype-parse": "8.0.4",
"semver": "7.5.2",
"shelljs": "0.8.5",
"unified": "10.1.2",
"uuid": "9.0.0",
"yargs": "17.7.2"
},
"devDependencies": {
"@adobe/eslint-config-helix": "2.0.2",
"@adobe/helix-shared-dom": "2.0.1",
"@adobe/helix-testutils": "0.4.14",
"@semantic-release/changelog": "6.0.3",
"@semantic-release/git": "10.0.1",
"c8": "7.14.0",
"eslint": "8.43.0",
"esmock": "2.3.1",
"husky": "8.0.3",
"junit-report-builder": "3.0.1",
"lint-staged": "13.2.2",
"mocha": "10.2.0",
"mocha-multi-reporters": "1.5.1",
"nock": "13.3.1",
"semantic-release": "21.0.5",
"sinon": "15.1.2"
},
"lint-staged": {
"*.js": "eslint"
}
}