-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
43 lines (43 loc) · 1.03 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
{
"name": "discord-styled-releases",
"author": "Nicolas Hevia",
"version": "1.0.0",
"description": "",
"main": "index.js",
"keywords": [
"discord",
"webhooks",
"style",
"release"
],
"scripts": {
"build": "ncc build src/index.js",
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/nhevia/discord-styled-releases.git"
},
"license": "ISC",
"bugs": {
"url": "https://github.com/nhevia/discord-styled-releases/issues"
},
"homepage": "https://github.com/nhevia/discord-styled-releases#readme",
"dependencies": {
"@actions/core": "1.2.6",
"@actions/github": "4.0.0",
"node-fetch": "2.6.1"
},
"devDependencies": {
"@babel/core": "^7.12.3",
"@babel/preset-env": "^7.12.1",
"@vercel/ncc": "^0.28.3",
"babel-jest": "^26.6.3",
"eslint": "^7.12.1",
"eslint-config-standard": "^16.0.1",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.2.1",
"jest": "^26.6.3"
}
}