mirror of
https://github.com/bcomnes/deploy-to-neocities.git
synced 2026-01-16 22:56:28 +00:00
54 lines
1.9 KiB
JSON
54 lines
1.9 KiB
JSON
{
|
|
"name": "deploy-to-neocities",
|
|
"version": "1.0.3",
|
|
"description": "Github Action to deplpoy a folder to Neocities.org",
|
|
"main": "index.js",
|
|
"private": true,
|
|
"scripts": {
|
|
"test": "run-s test:*",
|
|
"test:deps": "dependency-check . --no-dev --no-peer",
|
|
"test:standard": "standard",
|
|
"release": "git push --follow-tags && gh-release",
|
|
"version": "run-s version:*",
|
|
"version:1-changelog": "auto-changelog -p --template keepachangelog auto-changelog --breaking-pattern 'BREAKING:' && git add CHANGELOG.md",
|
|
"version:2-cleandeps": "mv node_modules tmp_modules && npm i --only=prod && git add node_modules --force",
|
|
"postversion": "rm -rf node_modules && mv tmp_modules node_modules",
|
|
"clean": "rimraf public && mkdirp public",
|
|
"build": "npm run clean && run-p build:*",
|
|
"build:md": "sitedown . -b public -l layout.html",
|
|
"build:static": "cpx 'static/*' public",
|
|
"start": "npm run watch",
|
|
"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"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git+https://github.com/bcomnes/deploy-to-neocities.git"
|
|
},
|
|
"keywords": [],
|
|
"author": "Bret Comnes <bcomnes@gmail.com> (https://bret.io/)",
|
|
"license": "MIT",
|
|
"bugs": {
|
|
"url": "https://github.com/bcomnes/deploy-to-neocities/issues"
|
|
},
|
|
"homepage": "https://github.com/bcomnes/deploy-to-neocities#readme",
|
|
"devDependencies": {
|
|
"auto-changelog": "^1.16.2",
|
|
"budo": "^11.6.3",
|
|
"cpx2": "^2.0.0",
|
|
"dependency-check": "^4.1.0",
|
|
"gh-release": "^3.5.0",
|
|
"npm-run-all": "^4.1.5",
|
|
"standard": "^14.3.1",
|
|
"sitedown": "^4.0.0"
|
|
},
|
|
"dependencies": {
|
|
"@actions/core": "1.2.2",
|
|
"async-neocities": "1.1.6",
|
|
"ms": "^2.1.2",
|
|
"nanoassert": "^2.0.0"
|
|
}
|
|
}
|