This repository has been archived by the owner on Jul 30, 2021. It is now read-only.
forked from dorny/paths-filter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
56 lines (56 loc) · 1.46 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
52
53
54
55
56
{
"name": "paths-filter",
"version": "1.0.0",
"private": true,
"description": "Execute your workflow steps only if relevant files are modified.",
"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",
"test:watch": "jest --watch",
"all": "yarn run build && yarn run format:check && yarn run lint && yarn run pack && yarn test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/actions/typescript-action.git"
},
"keywords": [
"actions",
"node",
"setup"
],
"author": "YourNameOrOrganization",
"license": "MIT",
"dependencies": {
"@actions/core": "1.2.4",
"@actions/exec": "1.0.4",
"@actions/github": "2.2.0",
"@octokit/webhooks": "7.6.4",
"minimatch": "3.0.4"
},
"devDependencies": {
"@types/jest": "26.0.3",
"@types/js-yaml": "3.12.5",
"@types/minimatch": "3.0.3",
"@types/node": "14.0.14",
"@typescript-eslint/eslint-plugin": "3.4.0",
"@typescript-eslint/parser": "3.5.0",
"@zeit/ncc": "0.22.3",
"eslint": "7.3.1",
"eslint-plugin-github": "4.0.1",
"eslint-plugin-jest": "23.17.1",
"jest": "26.1.0",
"jest-circus": "26.1.0",
"js-yaml": "3.14.0",
"prettier": "2.0.5",
"ts-jest": "26.1.1",
"typescript": "3.9.6"
},
"jest": {
"testEnvironment": "node"
}
}