This repository has been archived by the owner on Feb 25, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
79 lines (79 loc) · 2.48 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
{
"name": "@adobe/helix-data-embed",
"version": "3.0.28",
"private": true,
"description": "Helix Data Embed",
"main": "src/index.js",
"scripts": {
"test": " nyc mocha -i -g 'Post-Deploy'",
"test-ci": "nyc mocha -i -g 'Post-Deploy' --reporter xunit --reporter-options output=./junit/test-results.xml && codecov",
"test-postdeploy": "mocha --reporter xunit --reporter-options output=./junit/test-results.xml -g 'Post-Deploy'",
"lint": "eslint .",
"semantic-release": "semantic-release",
"build": "hedy -v",
"deploy": "hedy -v --deploy --test",
"deploy-ci": "hedy -v --deploy --test --pkgVersion=ci$CIRCLE_BUILD_NUM -l ci --cleanup-ci 24h",
"deploy-sequences": "hedy --no-build -no-hints -l major -l minor --cleanup-patch 7d --cleanup-minor 30d --cleanup-major 1y"
},
"wsk": {
"namespace": "helix",
"name": "helix-services/data-embed@${version}",
"memory": 512,
"testUrl": "/_status_check/healthcheck.json"
},
"repository": {
"type": "git",
"url": "https://github.com/adobe/helix-data-embed"
},
"author": "",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/adobe/helix-data-embed/issues"
},
"homepage": "https://github.com/adobe/helix-data-embed#readme",
"dependencies": {
"@adobe/helix-fetch": "3.0.5",
"@adobe/helix-onedrive-support": "6.1.4",
"@adobe/helix-shared-utils": "2.0.2",
"@adobe/helix-shared-wrap": "1.0.2",
"@adobe/helix-status": "9.2.7",
"@adobe/helix-universal-logger": "2.0.3",
"@flighter/a1-notation": "2.1.2",
"googleapis": "95.0.0",
"rss-parser": "3.12.0"
},
"devDependencies": {
"@adobe/eslint-config-helix": "1.3.2",
"@adobe/helix-deploy": "6.2.10",
"@adobe/helix-shared-config": "1.7.15",
"@adobe/helix-testutils": "0.4.12",
"@adobe/helix-universal": "3.0.5",
"@semantic-release/changelog": "6.0.1",
"@semantic-release/exec": "6.0.3",
"@semantic-release/git": "10.0.1",
"ajv": "8.10.0",
"chai": "4.3.6",
"chai-http": "4.3.0",
"codecov": "3.8.3",
"dotenv": "16.0.0",
"eslint": "8.9.0",
"eslint-plugin-header": "3.1.1",
"eslint-plugin-import": "2.25.4",
"fs-extra": "10.0.1",
"ghooks": "2.0.4",
"junit-report-builder": "3.0.0",
"lint-staged": "12.3.4",
"mocha": "9.2.1",
"nyc": "15.1.0",
"proxyquire": "2.1.3",
"semantic-release": "19.0.2"
},
"lint-staged": {
"*.js": "eslint"
},
"config": {
"ghooks": {
"pre-commit": "npx lint-staged"
}
}
}