forked from brettcannon/check-for-changed-files
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.6 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.6 KB
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": "check-for-changed-files",
"version": "1.1.0",
"description": "GitHub Action to check for required changed files in a PR",
"main": "dist/index.js",
"scripts": {
"build": "tsc",
"test": "jest",
"lint": "eslint --ext .ts src",
"lint-fix": "eslint --fix --ext .ts src",
"format": "prettier --write .",
"format-check": "prettier --check .",
"package": "ncc build src/index.ts --out dist --source-map --license licenses.txt",
"all": "npm run build && npm run test && npm run lint-fix && npm run format && npm run package"
},
"repository": {
"type": "git",
"url": "git+https://github.com/brettcannon/check-for-changed-files.git"
},
"author": "Brett Cannon",
"license": "MIT",
"bugs": {
"url": "https://github.com/brettcannon/check-for-changed-files/issues"
},
"homepage": "https://github.com/brettcannon/check-for-changed-files#readme",
"devDependencies": {
"@tsconfig/node12": "^1.0.7",
"@types/jest": "^26.0.22",
"@types/minimatch": "^3.0.4",
"@types/node": "^14.14.37",
"@typescript-eslint/eslint-plugin": "^4.21.0",
"@typescript-eslint/parser": "^4.21.0",
"@vercel/ncc": "^0.28.0",
"eslint": "^7.23.0",
"eslint-config-prettier": "^8.1.0",
"eslint-plugin-jest": "^24.3.4",
"jest": "^26.6.3",
"jest-circus": "^26.6.3",
"prettier": "^2.2.1",
"sinon": "^10.0.0",
"ts-jest": "^26.5.4",
"ts-mock-imports": "^1.3.3",
"typescript": "^4.1.0"
},
"dependencies": {
"@actions/core": "^1.2.6",
"@actions/github": "^4.0.0",
"@octokit/webhooks": "^7.24.3",
"minimatch": "^3.0.4"
}
}