-
Notifications
You must be signed in to change notification settings - Fork 31
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 1.11 KB
/
package.json
File metadata and controls
31 lines (31 loc) · 1.11 KB
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
{
"name": "github-actions-slack",
"version": "1.0.0",
"main": "index.js",
"type": "module",
"repository": "git@github.com:archive/github-actions-slack.git",
"license": "MIT",
"scripts": {
"lint": "eslint --fix *.js",
"build": "esbuild index.js --bundle --platform=node --target=node24 --format=cjs --outfile=dist/index.cjs",
"test": "node --experimental-vm-modules node_modules/jest/bin/jest.js src --config=jest.config.cjs",
"test-debug": "node --experimental-vm-modules --inspect-brk node_modules/jest/bin/jest.js --runInBand src --config=jest.config.cjs",
"deploy-wip": "rimraf dist/index.cjs && npm run build && git ac wip && git push",
"deploy": "rimraf dist/index.cjs && npm run build && git ac build && git push"
},
"devDependencies": {
"@eslint/eslintrc": "^3.3.5",
"@eslint/js": "^10.0.1",
"esbuild": "^0.28.0",
"eslint": "^10.1.0",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-prettier": "^5.5.5",
"globals": "^17.4.0",
"jest": "^30.3.0",
"prettier": "^3.8.1",
"rimraf": "^6.1.3"
},
"dependencies": {
"@actions/core": "^3.0.0"
}
}