-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
92 lines (92 loc) · 2.51 KB
/
Copy pathpackage.json
File metadata and controls
92 lines (92 loc) · 2.51 KB
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
{
"name": "@dylandepass/helix-product-pipeline",
"version": "2.10.0",
"description": "Helix Product Pipeline",
"main": "src/index.js",
"types": "src/index.d.ts",
"type": "module",
"imports": {
"#crypto": {
"node": "./src/utils/crypto.node.js",
"browser": "./src/utils/crypto.worker.js",
"worker": "./src/utils/crypto.worker.js"
}
},
"scripts": {
"test": "c8 mocha",
"lint": "eslint .",
"semantic-release": "semantic-release",
"semantic-release-dry": "semantic-release --dry-run --branches $CI_BRANCH",
"prepare": "husky"
},
"repository": {
"type": "git",
"url": "https://github.com/adobe-rnd/helix-product-pipeline"
},
"author": "",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/adobe-rnd/helix-product-pipeline/issues"
},
"homepage": "https://github.com/adobe-rnd/helix-product-pipeline#readme",
"mocha": {
"require": [
"test/setup-env.js",
"mocha-suppress-logs"
],
"recursive": "true",
"reporter": "mocha-multi-reporters",
"reporter-options": "configFile=.mocha-multi.json"
},
"publishConfig": {
"access": "public"
},
"engines": {
"node": ">=16.x"
},
"dependencies": {
"@adobe/helix-html-pipeline": "6.27.9",
"@adobe/helix-shared-utils": "3.0.2",
"@dylandepass/helix-product-shared": "1.12.0",
"dayjs": "1.11.19",
"github-slugger": "2.0.0",
"hast-util-from-html": "^2.0.3",
"hast-util-select": "6.0.4",
"hast-util-to-html": "9.0.5",
"hast-util-to-string": "3.0.1",
"hastscript": "9.0.1",
"mime": "4.0.7",
"rehype-format": "5.0.1",
"rehype-parse": "9.0.1",
"unified": "11.0.5",
"unist-util-select": "5.1.0",
"unist-util-visit": "5.0.0",
"unist-util-visit-parents": "6.0.1"
},
"devDependencies": {
"@adobe/eslint-config-helix": "2.0.9",
"@markedjs/html-differ": "5.0.1",
"@semantic-release/changelog": "6.0.3",
"@semantic-release/git": "10.0.1",
"@semantic-release/npm": "12.0.1",
"c8": "10.1.3",
"eslint": "8.57.1",
"eslint-import-resolver-exports": "1.0.0-beta.5",
"eslint-plugin-header": "3.1.1",
"eslint-plugin-import": "2.31.0",
"esmock": "2.7.0",
"fetch-mock": "12.5.2",
"husky": "9.1.7",
"jsdom": "26.1.0",
"junit-report-builder": "5.1.1",
"lint-staged": "15.5.1",
"mocha": "11.1.0",
"mocha-multi-reporters": "1.5.1",
"mocha-suppress-logs": "0.5.1",
"semantic-release": "24.2.3"
},
"lint-staged": {
"*.js": "eslint",
"*.cjs": "eslint"
}
}