-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
66 lines (66 loc) · 1.83 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
57
58
59
60
61
62
63
64
65
66
{
"name": "@side/npm-dependency-stats-action",
"version": "0.0.0-development",
"description": "Github action for getting stats about npm dependencies",
"author": "Side Inc.",
"license": "MIT",
"main": "dist/index.js",
"engines": {
"node": ">=20"
},
"scripts": {
"prepare": "husky",
"lint": "eslint src/**/*.ts",
"build": "rimraf dist && ncc build src/index.ts --license licenses.txt",
"test": "yarn tsc && jest",
"format": "prettier --write .",
"format:check": "prettier --check ."
},
"dependencies": {
"@actions/core": "1.11.1",
"@actions/exec": "1.1.1",
"semver": "7.6.3"
},
"devDependencies": {
"@commitlint/cli": "19.6.0",
"@side/commitlint-config": "1.1.0",
"@side/eslint-config-base": "2.3.1",
"@side/eslint-config-jest": "1.1.1",
"@side/prettier-config": "1.1.0",
"@swc/core": "1.9.3",
"@swc/jest": "0.2.37",
"@tsconfig/node20": "20.1.4",
"@types/jest": "29.5.14",
"@types/node": "20.11.30",
"@types/semver": "7.5.8",
"@typescript-eslint/eslint-plugin": "8.15.0",
"@typescript-eslint/parser": "8.15.0",
"@vercel/ncc": "0.38.3",
"eslint": "8.57.1",
"eslint-config-airbnb-base": "15.0.0",
"eslint-config-prettier": "9.1.0",
"eslint-plugin-import": "2.31.0",
"eslint-plugin-jsdoc": "50.5.0",
"eslint-plugin-prettier": "5.2.1",
"husky": "9.1.7",
"jest": "29.7.0",
"lint-staged": "15.2.10",
"prettier": "3.3.3",
"rimraf": "6.0.1",
"typescript": "5.7.2"
},
"lint-staged": {
"*.{js,ts}": [
"eslint --fix"
],
"*.{js,jsx,ts,tsx,yaml,yml,json,html,css,md}": [
"prettier --write"
]
},
"repository": {
"type": "git",
"url": "https://github.com/reside-eng/npm-dependency-stats-action.git"
},
"prettier": "@side/prettier-config",
"packageManager": "yarn@4.5.2"
}