-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
77 lines (77 loc) · 2.33 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
{
"name": "@adobe/helix-slack-notification",
"version": "1.7.185",
"private": true,
"description": "Helix Slack Notification Service",
"main": "src/index.js",
"type": "module",
"scripts": {
"test": "c8 mocha -i -g 'Post-Deploy' --spec=test/**/*.test.js",
"test-ci": "c8 mocha -i -g 'Post-Deploy' --spec=test/**/*.test.js && codecov",
"test-postdeploy": "mocha -g 'Post-Deploy'",
"lint": "eslint .",
"semantic-release": "semantic-release",
"build": "hedy -v",
"deploy": "hedy -v --deploy --test",
"deploy-routes": "hedy --no-build -no-hints -l major",
"deploy-ci": "hedy -v --deploy --test --pkgVersion=ci$CIRCLE_BUILD_NUM -l ci --cleanup-ci 24h",
"prepare": "husky install"
},
"wsk": {
"nodeVersion": 18,
"name": "helix-services/slack-notification@${version}",
"memory": 512,
"awsRole!important": "arn:aws:iam::118435662149:role/helix-service-role-s3-rw",
"testUrl": "/_status_check/healthcheck.json",
"target": "aws"
},
"mocha": {
"require": [
"test/setup-env.js"
],
"recursive": "true",
"reporter": "mocha-multi-reporters",
"reporter-options": "configFile=.mocha-multi.json",
"loader": "esmock"
},
"repository": {
"type": "git",
"url": "https://github.com/adobe/helix-slack-notification"
},
"author": "",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/adobe/helix-slack-notification/issues"
},
"homepage": "https://github.com/adobe/helix-slack-notification#readme",
"dependencies": {
"@adobe/fetch": "4.1.9",
"@adobe/helix-admin-support": "3.1.4",
"@adobe/helix-shared-config": "11.0.11",
"@adobe/helix-shared-utils": "3.0.2",
"@adobe/helix-shared-wrap": "2.0.2",
"@adobe/helix-status": "10.1.3"
},
"devDependencies": {
"@adobe/eslint-config-helix": "2.0.8",
"@adobe/helix-deploy": "12.3.10",
"@adobe/helix-universal": "5.0.6",
"@semantic-release/changelog": "6.0.3",
"@semantic-release/exec": "6.0.3",
"@semantic-release/git": "10.0.1",
"c8": "10.1.2",
"codecov": "3.8.3",
"dotenv": "16.4.5",
"eslint": "8.57.1",
"esmock": "2.6.9",
"husky": "9.1.7",
"lint-staged": "15.2.10",
"mocha": "10.8.2",
"mocha-multi-reporters": "1.5.1",
"nock": "13.5.6",
"semantic-release": "24.2.0"
},
"lint-staged": {
"*.js": "eslint"
}
}