-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
48 lines (48 loc) · 1.36 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
{
"name": "slack-health-score",
"version": "0.1.1",
"description": "A rough health score reporter",
"main": "dist/index.js",
"scripts": {
"build": "ncc build src/index.js -o dist --license licenses.txt --source-map",
"lint": "biome check .",
"lint:fix": "biome check --write .",
"local": "act public --eventpath .github/workflows/local/event.json --secret-file .github/workflows/local/.env --platform ubuntu-latest=node:20-buster",
"test": "npm run lint && c8 npm run test:mocha",
"test:mocha": "mocha --config .mocharc.json test/*-test.js test/**/*-test.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/slackapi/slack-health-score.git"
},
"keywords": [
"slack",
"github",
"action",
"workflow",
"health"
],
"author": "Slack Technologies, LLC",
"license": "MIT",
"bugs": {
"url": "https://github.com/slackapi/slack-health-score/issues"
},
"engines": {
"node": ">=20.0.0",
"npm": ">=10.2.0"
},
"homepage": "https://github.com/slackapi/slack-health-score#readme",
"dependencies": {
"@actions/core": "^1.11.1",
"@actions/github": "^6.0.0",
"@api/codecov": "file:.api/apis/codecov"
},
"devDependencies": {
"@biomejs/biome": "1.9.4",
"@vercel/ncc": "^0.38.3",
"c8": "^10.1.2",
"chai": "^4.5.0",
"mocha": "^10.8.2",
"sinon": "^19.0.2"
}
}