-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
52 lines (52 loc) · 1.34 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
{
"name": "lint-filenames",
"version": "2.0.0",
"private": true,
"description": "This github action validates if all files in a given folder match the given regex pattern.",
"main": "lib/main.js",
"scripts": {
"build": "tsc",
"format": "prettier --write **/*.ts",
"format-check": "prettier --check **/*.ts",
"lint": "eslint src/**/*.ts",
"package": "ncc build --source-map --license licenses.txt",
"test": "jest",
"all": "npm run build && npm run format && npm run lint && npm run package && npm test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/batista/lint-filenames.git"
},
"keywords": [
"actions",
"github",
"lint",
"linting",
"filename",
"file name",
"filenames",
"file names",
"file",
"extension"
],
"author": "Sergio Batista <[email protected]>",
"license": "MIT",
"dependencies": {
"@actions/core": "^1.8.2",
"@actions/github": "^5.0.3"
},
"devDependencies": {
"@types/jest": "^27.4.1",
"@types/node": "^17.0.41",
"@typescript-eslint/parser": "^5.27.1",
"@vercel/ncc": "^0.34.0",
"eslint": "^8.17.0",
"eslint-plugin-github": "^4.3.6",
"eslint-plugin-jest": "^26.5.3",
"jest": "^27.5.1",
"js-yaml": "^4.1.0",
"prettier": "2.6.2",
"ts-jest": "^27.1.3",
"typescript": "^4.7.3"
}
}