-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
37 lines (37 loc) · 884 Bytes
/
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
{
"name": "slack-github-action",
"version": "2.3.2",
"source": "src/index.ts",
"main": "dist/index.js",
"repository": "https://github.com/iRoachie/slack-github-action.git",
"author": "Kyle Roach <[email protected]>",
"license": "MIT",
"scripts": {
"build": "ncc build src/index.ts --license licenses.txt",
"lint": "eslint src"
},
"dependencies": {
"@actions/core": "^1.10.0",
"@actions/github": "^4.0.0",
"axios": "^1.1.3"
},
"devDependencies": {
"@types/node": "^16.18.3",
"@vercel/ncc": "^0.34.0",
"eslint": "^8.27.0",
"eslint-config-satya164": "^3.1.11",
"prettier": "^2.7.1",
"typescript": "^4.8.4"
},
"engines": {
"node": "v16"
},
"pnpm": {
"peerDependencyRules": {
"ignoreMissing": [
"@babel/plugin-syntax-flow",
"@babel/plugin-transform-react-jsx"
]
}
}
}