This repository has been archived by the owner on Jan 11, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
83 lines (83 loc) · 2.89 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
{
"name": "@adobe/helix-cache-flush",
"version": "1.3.193",
"private": true,
"description": "Helix Cache Flush Service",
"main": "src/index.js",
"scripts": {
"test": " nyc --reporter=text --reporter=lcov --check-coverage --branches 85 --statements 92 --lines 92 mocha -i -g 'Post-Deploy'",
"test-ci": "nyc --reporter=text --reporter=lcov --check-coverage --branches 85 --statements 92 --lines 92 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": "./node_modules/.bin/eslint .",
"semantic-release": "semantic-release",
"commit": "git-cz",
"build": "wsk-builder -v",
"deploy": "wsk-builder -v --deploy --test-params __ow_path=/_status_check/healthcheck.json",
"deploy-sequences": "wsk-builder --no-build -no-hints -l latest -l major -l minor",
"deploy-ci": "wsk-builder -v --deploy --test-params __ow_path=/_status_check/healthcheck.json --pkgVersion=ci$CIRCLE_BUILD_NUM -l ci"
},
"wsk": {
"namespace": "helix",
"name": "bot/cache-flush@${version}",
"web-export": false
},
"repository": {
"type": "git",
"url": "https://github.com/adobe/helix-cache-flush"
},
"author": "",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/adobe/helix-cache-flush/issues"
},
"homepage": "https://github.com/adobe/helix-cache-flush#readme",
"dependencies": {
"@adobe/fastly-native-promises": "2.0.0",
"@adobe/helix-bot-shared": "1.6.43",
"@adobe/helix-epsagon": "1.6.9",
"@adobe/helix-shared-utils": "1.0.4",
"@adobe/helix-shared-wrap": "1.0.0",
"@adobe/helix-status": "9.2.4",
"@adobe/helix-task-support": "1.5.4",
"@adobe/openwhisk-action-logger": "2.4.7",
"@adobe/openwhisk-action-utils": "4.4.7",
"@octokit/auth-app": "3.6.1",
"@octokit/rest": "18.12.0"
},
"devDependencies": {
"@adobe/eslint-config-helix": "1.3.2",
"@adobe/helix-testutils": "0.4.10",
"@adobe/openwhisk-action-builder": "3.0.30",
"@semantic-release/changelog": "6.0.1",
"@semantic-release/exec": "6.0.3",
"@semantic-release/git": "10.0.1",
"codecov": "3.8.3",
"commitizen": "4.2.4",
"cz-conventional-changelog": "3.3.0",
"dotenv": "10.0.0",
"eslint": "8.6.0",
"eslint-plugin-header": "3.1.1",
"eslint-plugin-import": "2.25.4",
"fs-extra": "10.0.0",
"js-yaml": "4.1.0",
"jsdoc-to-markdown": "7.1.0",
"junit-report-builder": "3.0.0",
"lint-staged": "12.1.7",
"mocha": "9.1.3",
"nock": "13.2.1",
"nyc": "15.1.0",
"openwhisk": "3.21.6",
"semantic-release": "18.0.1"
},
"lint-staged": {
"*.js": "eslint"
},
"config": {
"commitizen": {
"path": "node_modules/cz-conventional-changelog"
},
"ghooks": {
"pre-commit": "npx lint-staged"
}
}
}