generated from actions/typescript-action
-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathpackage.json
51 lines (51 loc) · 1.19 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": "javascript-template-action",
"version": "0.0.0",
"private": true,
"description": "JavaScript template action",
"main": "dist/index.js",
"scripts": {
"build": "tsc",
"build-release": "ncc build src/main.ts",
"format": "pretty-quick --pattern \"**/*.*(ts|tsx)\"",
"test": "jest"
},
"repository": {
"type": "git",
"url": "git@github.com:BoyWithSilverWings/generate-og-image.git"
},
"keywords": [
"actions",
"node"
],
"author": "Agney <agney@outlook.in>",
"license": "MIT",
"dependencies": {
"@actions/core": "^1.9.1",
"@actions/github": "^1.1.0",
"@zeit/ncc": "^0.20.5",
"front-matter": "^3.0.2",
"lodash": "^4.17.21",
"marked": "^4.0.10",
"puppeteer-core": "^1.20.0",
"twemoji": "^12.1.3"
},
"devDependencies": {
"@types/jest": "^24.0.13",
"@types/marked": "^4.0.3",
"@types/node": "^12.0.4",
"@types/puppeteer": "^1.19.1",
"husky": "^3.0.5",
"jest": "^29.3.1",
"jest-circus": "^24.7.1",
"prettier": "^1.18.2",
"pretty-quick": "^1.11.1",
"ts-jest": "^29.0.3",
"typescript": "^5.0.4"
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged"
}
}
}