-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
61 lines (61 loc) · 1.81 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
52
53
54
55
56
57
58
59
60
61
{
"name": "DiffMasterFlex",
"version": "1.0.4",
"description": "Get a list of files that differ between the specified commit and Git ref",
"repository": {
"type": "git",
"url": "https://github.com/selfagency/slackfeedbot.git"
},
"license": "MIT",
"author": "Daniel Sieradski <[email protected]>",
"type": "module",
"main": "dist/index.js",
"scripts": {
"build": "tsc --project .",
"prepare": "husky install",
"start": "node dist/index.cjs",
"bundle": "rm -rf dist; esbuild src/action.ts --bundle --platform=node --target=node16 --outfile=dist/index.cjs",
"lint": "tsc --noEmit && eslint src/. && prettier --check src/.",
"lint-staged": "lint-staged --allow-empty"
},
"lint-staged": {
"*.{js,json,md,yml}": [
"eslint --fix",
"prettier --write"
]
},
"dependencies": {
"@actions/core": "^1.10.0",
"@actions/exec": "^1.1.1",
"dayjs": "^1.11.5",
"html-to-text": "^8.2.1",
"linkedom": "^0.14.17",
"node-fetch": "^3.2.10",
"object-sha": "^2.0.7",
"rss-to-json": "^2.1.1",
"showdown": "^2.1.0",
"striptags": "^3.2.0"
},
"devDependencies": {
"@types/html-to-text": "^8.1.1",
"@types/node": "^18.11.2",
"@types/showdown": "^2.0.0",
"@typescript-eslint/eslint-plugin": "^5.40.1",
"@typescript-eslint/parser": "^5.40.1",
"esbuild": "^0.15.11",
"eslint": "^8.25.0",
"eslint-config-prettier": "^8.5.0",
"eslint-config-standard": "^17.0.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-json": "^3.1.0",
"eslint-plugin-markdown": "^3.0.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^6.1.0",
"eslint-plugin-yml": "^1.2.0",
"eslint-scope": "^7.1.1",
"husky": "^8.0.1",
"lint-staged": "^13.0.3",
"prettier": "^2.7.1",
"typescript": "^4.8.4"
}
}