generated from actions/typescript-action
-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
46 lines (46 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
{
"name": "changelog-reminder",
"version": "0.1.0",
"private": true,
"description": "Github action to remind user that a changelog should be added to PR",
"main": "lib/main.js",
"scripts": {
"build": "tsc",
"format": "prettier --write **/*.ts",
"format-check": "prettier --check **/*.ts",
"lint": "eslint src/**/*.ts",
"pack": "ncc build",
"test": "jest",
"all": "npm run build && npm run format && npm run lint && npm run pack && npm test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/actions/javascript-template.git"
},
"keywords": [
"actions",
"node",
"changelog",
"reminder"
],
"author": "peterjgrainger([email protected])",
"license": "MIT",
"dependencies": {
"@actions/core": "1.2.4",
"@actions/github": "^4.0.0"
},
"devDependencies": {
"@types/jest": "26.0.8",
"@types/node": "14.0.27",
"@typescript-eslint/parser": "^3.8.0",
"@zeit/ncc": "0.22.3",
"eslint": "^7.6.0",
"eslint-plugin-github": "^4.1.1",
"eslint-plugin-jest": "^23.20.0",
"jest": "26.2.2",
"jest-circus": "26.2.2",
"prettier": "^2.0.5",
"ts-jest": "26.1.4",
"typescript": "3.9.7"
}
}