-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
47 lines (47 loc) · 1.05 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
{
"name": "@marp-team/actions",
"version": "1.4.0",
"private": true,
"description": "Common GitHub Actions for Marp team projects",
"license": "MIT",
"author": {
"name": "Marp team",
"url": "https://github.com/marp-team"
},
"contributors": [
{
"name": "Yuki Hattori",
"url": "https://github.com/yhatt"
}
],
"repository": {
"type": "git",
"url": "https://github.com/marp-team/actions"
},
"main": "lib/main.js",
"prettier": {
"semi": false,
"singleQuote": true
},
"scripts": {
"build": "tsc",
"check:format": "yarn -s format -c",
"format": "prettier \"**/*.{js,json,md,ts,yaml,yml}\"",
"test": "jest",
"version": "git fetch --tags -f"
},
"dependencies": {
"@actions/core": "^1.9.1",
"@actions/github": "^5.0.3",
"mime-types": "^2.1.35"
},
"devDependencies": {
"@types/jest": "^28.1.0",
"@types/mime-types": "^2.1.1",
"@types/node": "^17.0.38",
"jest": "^28.1.0",
"prettier": "^2.6.2",
"ts-jest": "^28.0.4",
"typescript": "^4.7.2"
}
}