mirror of
https://github.com/bcomnes/deploy-to-neocities.git
synced 2026-01-17 06:56:30 +00:00
Bumps [@actions/core](https://github.com/actions/toolkit/tree/HEAD/packages/core) from 1.5.0 to 1.6.0. - [Release notes](https://github.com/actions/toolkit/releases) - [Changelog](https://github.com/actions/toolkit/blob/main/packages/core/RELEASES.md) - [Commits](https://github.com/actions/toolkit/commits/HEAD/packages/core) --- updated-dependencies: - dependency-name: "@actions/core" dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <support@github.com>
61 lines
1.9 KiB
JSON
61 lines
1.9 KiB
JSON
{
|
|
"name": "deploy-to-neocities",
|
|
"description": "Github Action to deplpoy a folder to Neocities.org",
|
|
"version": "1.1.1",
|
|
"author": "Bret Comnes <bcomnes@gmail.com> (https://bret.io/)",
|
|
"bugs": {
|
|
"url": "https://github.com/bcomnes/deploy-to-neocities/issues"
|
|
},
|
|
"dependencies": {
|
|
"@actions/core": "1.6.0",
|
|
"async-neocities": "2.1.1",
|
|
"minimatch": "^3.0.4",
|
|
"ms": "2.1.3",
|
|
"webassert": "3.0.2"
|
|
},
|
|
"devDependencies": {
|
|
"auto-changelog": "^2.0.0",
|
|
"@zeit/ncc": "^0.22.0",
|
|
"budo": "^11.6.3",
|
|
"cpx2": "^4.0.0",
|
|
"dependency-check": "^4.1.0",
|
|
"gh-release": "^6.0.0",
|
|
"npm-run-all": "^4.1.5",
|
|
"sitedown": "^5.0.0",
|
|
"standard": "^16.0.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 && ncc build index.js -o dist -s",
|
|
"build:md": "sitedown . -b public -l layout.html",
|
|
"build:static": "cpx './!(node_modules)**/*.{png,ico}' public",
|
|
"clean": "rimraf public && mkdirp 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:js": "budo --dir public --live --open",
|
|
"watch:md": "npm run build:md -- -w",
|
|
"watch:static": "npm run build:static -- --watch"
|
|
},
|
|
"standard": {
|
|
"ignore": [
|
|
"dist"
|
|
]
|
|
}
|
|
}
|