generated from adobe/franklin-library
-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
72 lines (72 loc) · 2.01 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
{
"name": "@adobe/helix-onedrive-support",
"version": "12.0.1",
"description": "Helix OneDrive Support",
"main": "src/index.js",
"exports": {
".": "./src/index.js"
},
"type": "module",
"types": "src/index.d.ts",
"scripts": {
"test": "c8 mocha --spec=test/**/*.test.js",
"lint": "./node_modules/.bin/eslint .",
"semantic-release": "semantic-release",
"semantic-release-dry": "semantic-release --dry-run --branches $CI_BRANCH",
"docs": "npx jsdoc2md -c .jsdoc.json --files 'src/*.js' > docs/API.md",
"prepare": "husky"
},
"repository": {
"type": "git",
"url": "https://github.com/adobe/helix-onedrive-support"
},
"author": "",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/adobe/helix-onedrive-support/issues"
},
"homepage": "https://github.com/adobe/helix-onedrive-support#readme",
"dependencies": {
"@adobe/fetch": "^4.1.10",
"@adobe/helix-shared-string": "^2.1.0",
"@adobe/helix-shared-tokencache": "^1.4.19",
"@azure/msal-node": "2.16.2",
"jose": "5.9.6"
},
"devDependencies": {
"@adobe/eslint-config-helix": "2.0.8",
"@aws-sdk/client-s3": "3.717.0",
"@semantic-release/changelog": "6.0.3",
"@semantic-release/git": "10.0.1",
"ajv": "8.17.1",
"c8": "10.1.3",
"chalk-template": "1.1.0",
"dotenv": "16.4.7",
"eslint": "8.57.1",
"eslint-plugin-header": "3.1.1",
"eslint-plugin-import": "2.31.0",
"husky": "9.1.7",
"install": "0.13.0",
"jsdoc-to-markdown": "9.1.1",
"jsdoc-tsimport-plugin": "1.0.5",
"junit-report-builder": "5.1.1",
"lint-staged": "15.3.0",
"mocha": "11.0.1",
"mocha-multi-reporters": "1.5.1",
"mocha-suppress-logs": "0.5.1",
"nock": "13.5.6",
"npm": "11.0.0",
"semantic-release": "24.2.0"
},
"lint-staged": {
"*.js": "eslint"
},
"mocha": {
"require": [
"test/setup-env.js",
"mocha-suppress-logs"
],
"reporter": "mocha-multi-reporters",
"reporter-options": "configFile=.mocha-multi.json"
}
}