-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
57 lines (57 loc) · 1.55 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
{
"name": "@adobe/helix-onedrive-cli",
"version": "1.11.328",
"description": "Helix OneDrive CLI",
"main": "src/index.js",
"type": "module",
"bin": {
"1d": "src/index.js"
},
"scripts": {
"start": "nodemon --watch src src/browser.js",
"test": "c8 mocha --spec 'test/**/*.test.js'",
"lint": "eslint .",
"semantic-release": "semantic-release",
"semantic-release-dry": "semantic-release --dry-run --branches $CI_BRANCH",
"prepare": "husky install"
},
"repository": {
"type": "git",
"url": "https://github.com/adobe/helix-onedrive-cli"
},
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/adobe/helix-onedrive-cli/issues"
},
"homepage": "https://github.com/adobe/helix-onedrive-cli#readme",
"dependencies": {
"@adobe/helix-onedrive-support": "12.0.10",
"@adobe/helix-shared-config": "11.1.0",
"@adobe/helix-shared-tokencache": "1.5.0",
"chalk-template": "1.1.0",
"cookie-parser": "1.4.7",
"dotenv": "16.4.7",
"express": "4.21.2",
"fs-extra": "11.3.0",
"open": "10.1.0",
"yargs": "17.7.2"
},
"devDependencies": {
"@adobe/eslint-config-helix": "2.0.9",
"@semantic-release/changelog": "6.0.3",
"@semantic-release/git": "10.0.1",
"@semantic-release/npm": "12.0.1",
"c8": "10.1.3",
"codecov": "3.8.3",
"eslint": "8.57.1",
"husky": "9.1.7",
"junit-report-builder": "5.1.1",
"lint-staged": "15.4.3",
"mocha": "11.1.0",
"nodemon": "3.1.9",
"semantic-release": "24.2.3"
},
"lint-staged": {
"*.js": "eslint"
}
}