This repository was archived by the owner on Nov 2, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 1.22 KB
/
package.json
File metadata and controls
37 lines (37 loc) · 1.22 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
{
"name": "@bachmacintosh/need-npm-pkg-version-bump",
"version": "1.0.25",
"description": "A GitHub Action that checks for a package.json version bump, and fails if it isn't a newer Semantic Version",
"type": "module",
"main": "dist/index.mjs",
"scripts": {
"prebuild": "rimraf ./lib && rimraf ./dist",
"build": "tsc && ncc build lib/index.js --license licenses.txt && mv dist/index.js dist/index.mjs",
"lint": "eslint . && prettier --check .",
"lint:fix": "eslint --fix . && prettier --write ."
},
"author": "Collin Bachman <collin@bachman.io>",
"license": "MIT",
"dependencies": {
"@actions/core": "1.11.0",
"@actions/github": "6.0.0",
"node-fetch": "3.3.2",
"semver": "7.6.3"
},
"devDependencies": {
"@octokit/webhooks-types": "7.6.1",
"@schemastore/package": "0.0.10",
"@types/node": "20.16.10",
"@types/semver": "7.5.8",
"@typescript-eslint/eslint-plugin": "6.21.0",
"@typescript-eslint/parser": "6.21.0",
"@vercel/ncc": "0.38.2",
"eslint": "8.57.1",
"eslint-config-prettier": "9.1.0",
"eslint-import-resolver-typescript": "3.6.3",
"eslint-plugin-import": "2.31.0",
"prettier": "3.3.3",
"rimraf": "5.0.10",
"typescript": "5.3.3"
}
}