forked from slackapi/slack-health-score
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
51 lines (51 loc) · 1.45 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
{
"name": "slack-health-score",
"version": "0.0.4",
"description": "A rough health score reporter",
"main": "dist/index.js",
"scripts": {
"lint": "eslint .",
"build": "ncc build src/index.js -o dist --license licenses.txt",
"local": "act public --eventpath .github/workflows/local/event.json --secret-file .github/workflows/local/.env --platform ubuntu-latest=node:20-buster",
"test:mocha": "mocha --config .mocharc.json test/*-test.js test/**/*-test.js",
"test": "npm run lint && c8 npm run test:mocha"
},
"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.10.1",
"@actions/github": "^6.0.0",
"@api/codecov": "file:.api/apis/codecov"
},
"devDependencies": {
"@vercel/ncc": "^0.38.1",
"c8": "^9.1.0",
"chai": "^4.3.10",
"eslint": "^8.57.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-jsdoc": "^48.2.3",
"eslint-plugin-node": "^11.1.0",
"mocha": "^10.4.0",
"sinon": "^17.0.1"
}
}