-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
36 lines (36 loc) · 1004 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
{
"name": "@shresht7/md-2-steambb",
"version": "1.0.0",
"description": "GitHub Action to convert markdown files into Steam bb-code",
"main": "index.js",
"scripts": {
"tsc": "tsc",
"test": "jest",
"coverage": "jest --coverage",
"package": "ncc build ./build/index.js --license licenses.txt",
"build": "npm run tsc && npm run package"
},
"repository": {
"type": "git",
"url": "git+https://github.com/HunterGhost27/Markdown-to-Steam.git"
},
"author": "Shresht7",
"license": "MIT",
"bugs": {
"url": "https://github.com/HunterGhost27/Markdown-to-Steam/issues"
},
"homepage": "https://github.com/HunterGhost27/Markdown-to-Steam#readme",
"devDependencies": {
"@octokit/types": "^6.17.3",
"@types/jest": "^26.0.22",
"@types/node": "^14.14.37",
"jest": "^26.6.3",
"ts-jest": "^26.5.4",
"typescript": "^4.2.4"
},
"dependencies": {
"@actions/core": "^1.2.6",
"@actions/github": "^4.0.0",
"js-base64": "^3.6.0"
}
}