-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
42 lines (42 loc) · 1.02 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
{
"name": "discord-reporter",
"version": "1.0.0",
"main": "./lib/index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/TeamGalacticraft/discord-reporter.git"
},
"author": {
"name": "TeamGalacticraft"
},
"license": "MIT",
"private": false,
"dependencies": {
"@actions/core": "^1.6.0",
"@actions/github": "^5.0.0",
"@actions/glob": "^0.2.0",
"axios": "^0.24.0",
"fast-xml-parser": "^4.0.9"
},
"bugs": {
"url": "https://github.com/TeamGalacticraft/discord-reporter/issues"
},
"homepage": "https://github.com/TeamGalacticraft/discord-reporter#readme",
"files": [
"./bin/*",
"./lib/*"
],
"typings": "./lib/index.d.ts",
"scripts": {
"build": "tsc",
"lint": "tslint -c tslint.json src/**/*.ts",
"prepublish": "npm run build",
"package": "tsc && ncc build --source-map --license licenses.txt"
},
"devDependencies": {
"@types/node": "^16.11.7",
"@vercel/ncc": "^0.31.1",
"tslint": "^6.1.3",
"typescript": "^4.4.4"
}
}