-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
48 lines (48 loc) · 1.41 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
{
"name": "metadata-post-action",
"version": "0.1.0",
"description": "A GitHub action that creates a metadata post from data files.",
"main": "dist/index.js",
"type": "module",
"scripts": {
"pretest": "eslint .",
"test": "jest --coverage",
"build": "ncc build src/index.ts && cpy src/template.md .github/actions/ --flat --rename post-template.md"
},
"author": "Katy DeCorah",
"license": "MIT",
"devDependencies": {
"@actions/core": "^1.10.1",
"@actions/github": "^6.0.0",
"@babel/preset-env": "^7.24.7",
"@babel/preset-typescript": "^7.24.7",
"@eslint/js": "^9.4.0",
"@types/eslint__js": "^8.42.3",
"@types/jest": "^29.5.12",
"@types/js-yaml": "^4.0.9",
"@types/node": "^20.14.2",
"@vercel/ncc": "^0.38.1",
"cpy-cli": "^5.0.0",
"eslint": "^8.57.0",
"eslint-plugin-jest": "^28.6.0",
"jest": "^29.7.0",
"js-yaml": "^4.1.0",
"octokit": "^3.2.0",
"prettier": "^3.3.2",
"prettier-2": "npm:prettier@2",
"ts-node": "^10.9.2",
"typescript": "^5.4.5",
"typescript-eslint": "^7.13.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/library-pals/metadata-post-action.git"
},
"keywords": [
"github-actions"
],
"bugs": {
"url": "https://github.com/katydecorah/library-pals/metadata-post-action/issues"
},
"homepage": "https://github.com/katydecorah/library-pals/metadata-post-action#readme"
}