deploy-to-neocities/package.json
dependabot[bot] 7fc09bc1c3
chore(deps-dev): bump npm-run-all2 from 6.2.6 to 7.0.1
Bumps [npm-run-all2](https://github.com/bcomnes/npm-run-all2) from 6.2.6 to 7.0.1.
- [Release notes](https://github.com/bcomnes/npm-run-all2/releases)
- [Changelog](https://github.com/bcomnes/npm-run-all2/blob/master/CHANGELOG.md)
- [Commits](https://github.com/bcomnes/npm-run-all2/compare/v6.2.6...v7.0.1)

---
updated-dependencies:
- dependency-name: npm-run-all2
  dependency-type: direct:development
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <support@github.com>
2024-10-24 03:31:33 +00:00

57 lines
1.8 KiB
JSON

{
"name": "deploy-to-neocities",
"description": "Github Action to deplpoy a folder to Neocities.org",
"version": "2.0.4",
"author": "Bret Comnes <bcomnes@gmail.com> (https://bret.io/)",
"bugs": {
"url": "https://github.com/bcomnes/deploy-to-neocities/issues"
},
"dependencies": {
"@actions/core": "1.11.1",
"async-neocities": "2.1.6",
"minimatch": "10.0.1",
"ms": "2.1.3",
"pony-cause": "^2.1.4",
"webassert": "3.0.2"
},
"devDependencies": {
"top-bun": "^10.0.0",
"auto-changelog": "^2.0.0",
"dependency-check": "^4.1.0",
"gh-release": "^7.0.0",
"npm-run-all2": "^7.0.1",
"standard": "^17.0.0",
"esbuild": "^0.24.0"
},
"homepage": "https://github.com/bcomnes/deploy-to-neocities#readme",
"keywords": [],
"license": "MIT",
"main": "index.js",
"private": true,
"repository": {
"type": "git",
"url": "git+https://github.com/bcomnes/deploy-to-neocities.git"
},
"scripts": {
"build": "npm run clean && run-p build:*",
"build:action": "rm -rf dist && esbuild index.js --bundle --platform=node --target=node16 --sourcemap=external --outdir=dist",
"build:site": "tb --src . --dest public",
"clean": "rm -rf public && mkdir -p public",
"release": "git push --follow-tags && gh-release -y",
"start": "npm run watch",
"test": "run-s test:*",
"test:deps": "dependency-check . --no-dev --no-peer",
"test:standard": "standard",
"version": "run-s version:*",
"version:build": "npm run build:action && git add dist",
"version:changelog": "auto-changelog -p --template keepachangelog auto-changelog --breaking-pattern 'BREAKING CHANGE:' && git add CHANGELOG.md",
"watch": "npm run clean && run-p watch:*",
"watch:site": "npm run build:site -- -w"
},
"standard": {
"ignore": [
"dist"
]
}
}