43 lines
1.1 KiB
JSON
43 lines
1.1 KiB
JSON
{
|
|
"name": "actions-ding",
|
|
"version": "0.0.0",
|
|
"private": true,
|
|
"description": "Send dingding simple notify message",
|
|
"scripts": {
|
|
"build": "tsc",
|
|
"format": "prettier --write **/*.ts",
|
|
"format-check": "prettier --check **/*.ts",
|
|
"lint": "eslint src/**/*.ts",
|
|
"package": "ncc build src/index.ts -o dist",
|
|
"test": "jest",
|
|
"all": "npm run build && npm run format && npm run lint && npm run package && npm test"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git+https://github.com/zcong1993/actions-ding"
|
|
},
|
|
"keywords": [
|
|
"actions",
|
|
"node",
|
|
"setup"
|
|
],
|
|
"author": "zcong1993",
|
|
"license": "MIT",
|
|
"dependencies": {
|
|
"@actions/core": "^1.6.0",
|
|
"@zcong/ding-bot": "^0.1.3"
|
|
},
|
|
"devDependencies": {
|
|
"@types/jest": "^27.0.2",
|
|
"@types/node": "^16.11.7",
|
|
"@typescript-eslint/parser": "^5.3.1",
|
|
"@vercel/ncc": "^0.31.1",
|
|
"eslint": "^8.2.0",
|
|
"eslint-plugin-github": "^4.3.4",
|
|
"eslint-plugin-jest": "^25.2.4",
|
|
"jest": "^27.3.1",
|
|
"prettier": "^2.4.1",
|
|
"typescript": "^4.4.4"
|
|
}
|
|
}
|