generated from actions/typescript-action
-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
51 lines (51 loc) · 1.58 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
49
50
51
{
"name": "zenn-metadata-updater-action",
"version": "3.0.2",
"private": true,
"description": "GitHub Action to update metadata in Zenn markdown file.",
"main": "lib/main.js",
"scripts": {
"check:apply": "biome check --apply-unsafe ./src",
"check": "biome check ./src",
"check:ci": "biome ci ./src",
"package": "npm run package:pre && npm run package:main",
"package:main": "ncc build src/main.ts --license licenses.txt",
"package:pre": "ncc build src/pre.ts && mv dist/index.js dist/pre.js",
"test": "TZ=Asia/Tokyo jest",
"test:ci": "TZ=Asia/Tokyo jest --ci --runInBand",
"ci": "concurrently --prefix-colors auto npm:check:ci npm:test:ci",
"prerelease": "concurrently --prefix-colors auto npm:package npm:test npm:check"
},
"repository": {
"type": "git",
"url": "git+https://github.com/korosuke613/zenn-metadata-updater-action.git"
},
"keywords": [
"actions",
"node",
"typescript",
"zenn"
],
"author": "Futa Hirakoba <korosuke613613@gmail.com> (https://korosuke613.github.io/)",
"license": "MIT",
"dependencies": {
"@actions/core": "1.10.1",
"@actions/exec": "1.1.1",
"@actions/github": "6.0.0",
"@vercel/ncc": "0.38.2",
"js-yaml": "4.1.0",
"typescript": "5.6.2",
"yaml-front-matter": "4.1.1",
"zenn-metadata-updater": "1.0.0"
},
"devDependencies": {
"@biomejs/biome": "1.9.4",
"@types/jest": "29.5.14",
"@types/node": "20.17.0",
"@types/yaml-front-matter": "4.1.3",
"concurrently": "8.2.2",
"jest": "29.7.0",
"jest-junit": "16.0.0",
"ts-jest": "29.2.5"
}
}