-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
42 lines (42 loc) · 1007 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
37
38
39
40
41
42
{
"name": "release",
"version": "1.0.0",
"description": "",
"main": "lib/index.js",
"scripts": {
"build": "tsc && ncc build",
"format": "organize-imports-cli **/*.ts && prettier --write '**/*.ts'",
"format-check": "prettier --check '**/*.ts'",
"test:unit": "jest unit",
"test": "jest"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@actions/core": "^1.10.1",
"@actions/github": "^6.0.0",
"marked": "^4.0.6"
},
"devDependencies": {
"@types/chai": "^4.2.22",
"@types/jest": "^27.0.2",
"@types/js-yaml": "^4.0.3",
"@types/json2md": "^1.5.1",
"@types/marked": "^4.0.1",
"@types/node": "^16.10.2",
"@typescript-eslint/parser": "^8.0.0",
"@vercel/ncc": "^0.38.1",
"jest": "^27.2.4",
"jest-circus": "^27.2.4",
"js-yaml": "^4.1.0",
"json2md": "^1.12.0",
"mocha": "^9.1.2",
"organize-imports-cli": "^0.9.0",
"prettier": "^3.3.3",
"ts-jest": "^27.0.5",
"ts-node": "^10.2.1",
"ts-node-dev": "^2.0.0",
"typescript": "^4.4.3"
}
}