-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 1.72 KB
/
package.json
File metadata and controls
62 lines (62 loc) · 1.72 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
54
55
56
57
58
59
60
61
62
{
"name": "dependencies-checker",
"version": "1.1.3",
"description": "JS dependencies checker",
"private": false,
"repository": {
"type": "git",
"url": "https://github.com/matheusjardimb/dependencies-checker"
},
"keywords": [
"GitHub",
"Actions",
"JavaScript",
"Dependencies"
],
"author": {
"name": "Matheus Jardim Bernardes",
"url": "https://matheusjardimb.com/"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/matheusjardimb/dependencies-checker/issues"
},
"homepage": "https://github.com/matheusjardimb/dependencies-checker#readme",
"main": "lib/index.js",
"scripts": {
"prepare": "ncc build src/index.ts -o dist --minify",
"pre-commit.install": "husky install",
"build": "tsc",
"format": "prettier --write '**/*.ts'",
"format-check": "prettier --check '**/*.ts'",
"lint": "eslint src/**/*.ts",
"package": "ncc build --source-map --license LICENSE.md",
"test": "jest",
"all": "npm run build && npm run format && npm run lint && npm run package && npm test"
},
"dependencies": {
"@actions/core": "1.11.1",
"find-duplicated-property-keys": "1.2.9"
},
"devDependencies": {
"@types/find-duplicated-property-keys": "1.1.3",
"@types/jest": "29.5.11",
"@types/mri": "1.1.5",
"@types/node": "24.3.0",
"@typescript-eslint/parser": "5.62.0",
"@vercel/ncc": "0.38.0",
"eslint": "8.56.0",
"eslint-plugin-github": "4.9.0",
"eslint-plugin-jest": "27.6.0",
"husky": "9.1.5",
"jest": "29.7.0",
"jest-cli": "30.1.3",
"js-yaml": "4.1.0",
"mri": "1.2.0",
"prettier": "2.8.8",
"ts-jest": "29.4.1",
"ts-node": "10.9.2",
"typescript": "5.3.2"
},
"bin": "./dist/index.js"
}