forked from tj-actions/glob
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.44 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.44 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
52
53
{
"name": "glob",
"version": "1.0.0",
"private": true,
"description": "Glob pattern matching github action",
"main": "lib/main.js",
"scripts": {
"build": "tsc",
"format": "prettier --write **/*.ts",
"format-check": "prettier --check **/*.ts",
"lint": "eslint src/**/*.ts",
"package": "ncc build lib/main.js --source-map --license licenses.txt && ncc build lib/cleanup.js -o dist/cleanup",
"test": "jest --coverage",
"all": "yarn build && yarn format && yarn lint && yarn package && yarn test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/tj-actions/glob.git"
},
"keywords": [
"actions",
"glob",
"github-actions"
],
"author": "Tonye Jack",
"license": "MIT",
"bugs": {
"url": "https://github.com/tj-actions/glob/issues"
},
"homepage": "https://github.com/tj-actions/glob#readme",
"dependencies": {
"@actions/core": "1.9.1",
"@actions/exec": "1.1.1",
"@actions/glob": "0.3.0",
"temp-dir": "2.0.0",
"uuid": "8.3.2"
},
"devDependencies": {
"@types/jest": "28.1.8",
"@types/node": "18.7.13",
"@types/uuid": "8.3.4",
"@typescript-eslint/eslint-plugin": "5.35.1",
"@typescript-eslint/parser": "5.35.1",
"@vercel/ncc": "0.34.0",
"eslint": "8.23.0",
"eslint-plugin-github": "4.3.7",
"eslint-plugin-jest": "27.0.1",
"jest": "29.0.1",
"prettier": "2.7.1",
"ts-jest": "28.0.8",
"typescript": "4.8.2"
}
}