-
Notifications
You must be signed in to change notification settings - Fork 12
/
package.json
104 lines (104 loc) · 3.17 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
99
100
101
102
103
104
{
"name": "@adobe/helix-html2md",
"version": "2.11.11",
"private": true,
"description": "Helix Html2MD",
"main": "src/index.js",
"type": "module",
"scripts": {
"start": "nodemon",
"test": "c8 mocha -i -g 'Post-Deploy' --spec=test/**/*.test.js",
"test-postdeploy": "mocha -g 'Post-Deploy' --spec=test/**/*.test.js",
"lint": "eslint .",
"semantic-release": "semantic-release",
"semantic-release-dry": "semantic-release --dry-run --branches $CI_BRANCH",
"build": "hedy -v",
"deploy": "hedy -v --deploy --test --cleanup-patch=1w",
"deploy-routes": "hedy --no-build --no-hints -l major",
"deploy-ci": "hedy -v --deploy --test --pkgVersion=ci$CI_BUILD_NUM -l ci --cleanup-ci 24h",
"prepare": "husky"
},
"wsk": {
"target": "aws",
"name": "helix3/html2md@${version}",
"testUrl": "/_status_check/healthcheck.json",
"memory": 1024,
"awsRole!important": "arn:aws:iam::118435662149:role/helix-service-role-s3-rw",
"awsAttachAuthorizer": "helix-token-authorizer_v2",
"fastlyServiceId!important": "",
"nodeVersion": 22
},
"mocha": {
"require": [
"test/setup-env.js",
"mocha-suppress-logs"
],
"recursive": "true",
"reporter": "mocha-multi-reporters",
"reporter-options": "configFile=.mocha-multi.json"
},
"repository": {
"type": "git",
"url": "https://github.com/adobe/helix-html2md"
},
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/adobe/helix-html2md/issues"
},
"homepage": "https://github.com/adobe/helix-html2md#readme",
"dependencies": {
"@adobe/fetch": "4.1.11",
"@adobe/helix-markdown-support": "7.1.9",
"@adobe/helix-mediahandler": "2.5.43",
"@adobe/helix-shared-body-data": "2.1.8",
"@adobe/helix-shared-process-queue": "3.0.4",
"@adobe/helix-shared-utils": "3.0.2",
"@adobe/helix-shared-wrap": "2.0.2",
"@adobe/helix-status": "10.1.5",
"@adobe/remark-gridtables": "3.0.8",
"hast-util-select": "6.0.3",
"hast-util-to-mdast": "10.1.1",
"hast-util-to-string": "3.0.1",
"mdast-util-to-markdown": "2.1.2",
"rehype-parse": "9.0.1",
"remark-gfm": "4.0.0",
"remark-stringify": "11.0.0",
"unified": "11.0.5",
"unist-util-visit": "5.0.0"
},
"devDependencies": {
"@adobe/eslint-config-helix": "2.0.8",
"@adobe/helix-deploy": "12.4.4",
"@adobe/helix-html-pipeline": "^6.0.0",
"@adobe/helix-universal": "5.0.8",
"@adobe/helix-universal-devserver": "1.1.74",
"@adobe/semantic-release-coralogix": "1.1.34",
"@semantic-release/changelog": "6.0.3",
"@semantic-release/exec": "6.0.3",
"@semantic-release/git": "10.0.1",
"c8": "10.1.3",
"codecov": "3.8.3",
"dotenv": "16.4.7",
"eslint": "8.57.1",
"husky": "9.1.7",
"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",
"nodemon": "3.1.9",
"semantic-release": "24.2.0"
},
"lint-staged": {
"*.js": "eslint"
},
"nodemonConfig": {
"exec": "node --inspect ./test/dev/server.mjs",
"watch": [
".env",
"."
],
"ext": ".js, .cjs, .ejs, .css"
}
}