zcong1993-actions-ding/package.json

43 lines
1.1 KiB
JSON
Raw Permalink Normal View History

2020-06-19 15:57:43 +08:00
{
"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",
2021-11-08 10:55:31 +08:00
"package": "ncc build src/index.ts -o dist",
2020-06-19 15:57:43 +08:00
"test": "jest",
2021-11-08 10:55:31 +08:00
"all": "npm run build && npm run format && npm run lint && npm run package && npm test"
2020-06-19 15:57:43 +08:00
},
"repository": {
"type": "git",
"url": "git+https://github.com/zcong1993/actions-ding"
},
"keywords": [
"actions",
"node",
"setup"
],
"author": "zcong1993",
"license": "MIT",
"dependencies": {
2021-11-08 10:55:31 +08:00
"@actions/core": "^1.6.0",
2021-11-10 02:23:02 +08:00
"@zcong/ding-bot": "^0.1.3"
2020-06-19 15:57:43 +08:00
},
"devDependencies": {
2021-11-08 10:55:31 +08:00
"@types/jest": "^27.0.2",
2021-11-10 02:23:02 +08:00
"@types/node": "^16.11.7",
"@typescript-eslint/parser": "^5.3.1",
2021-11-08 10:55:31 +08:00
"@vercel/ncc": "^0.31.1",
"eslint": "^8.2.0",
2021-11-10 02:23:02 +08:00
"eslint-plugin-github": "^4.3.4",
"eslint-plugin-jest": "^25.2.4",
2021-11-08 10:55:31 +08:00
"jest": "^27.3.1",
"prettier": "^2.4.1",
"typescript": "^4.4.4"
2020-06-19 15:57:43 +08:00
}
}