generated from actions/typescript-action
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
50 lines (50 loc) · 1.54 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
{
"name": "release-notes",
"version": "1.0.2",
"private": true,
"description": "GitHub action for generating release notes",
"main": "lib/main.js",
"scripts": {
"build": "tsc",
"prettier": "prettier --write **/*.{js,json,md,ts,yml}",
"lint": "eslint src/**/*.ts --fix",
"package": "ncc build --source-map --license licenses.txt",
"test": "jest",
"all": "npm run build && npm run prettier && npm run lint && npm run package && npm test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/actions/create-release-notes.git"
},
"keywords": [
"release",
"notes"
],
"author": "Johny Herangi",
"license": "MIT",
"bugs": {
"url": "https://github.com/actions/release-notes/issues"
},
"homepage": "https://github.com/actions/release-notes#readme",
"dependencies": {
"@actions/core": "^1.10.0",
"@actions/github": "^4.0.0"
},
"devDependencies": {
"@types/jest": "^27.5.0",
"@types/node": "^18.14.6",
"@typescript-eslint/parser": "^5.54.1",
"@vercel/ncc": "^0.36.1",
"eslint": "^8.35.0",
"eslint-config-prettier": "^8.7.0",
"eslint-plugin-github": "^4.1.2",
"eslint-plugin-jest": "^24.3.2",
"jest": "^26.6.3",
"jest-circus": "^29.5.0",
"js-yaml": "^4.1.0",
"prettier": "2.8.4",
"prettier-plugin-organize-imports": "^1.1.1",
"ts-jest": "^26.5.6",
"typescript": "^4.2.3"
}
}