chore: fixpack

This commit is contained in:
Bret Comnes 2020-02-29 17:04:59 -07:00
parent 4fd7e5d4a9
commit 9662b257f1
No known key found for this signature in database
GPG Key ID: 3705F4634DC3A1AC
2 changed files with 47 additions and 42 deletions

View File

@ -1,6 +1,6 @@
MIT License MIT License
Copyright (c) 2019 Bret Comnes Copyright (c) 2020 Bret Comnes
Permission is hereby granted, free of charge, to any person obtaining a copy Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal of this software and associated documentation files (the "Software"), to deal

View File

@ -1,55 +1,60 @@
{ {
"name": "deploy-to-neocities", "name": "deploy-to-neocities",
"version": "1.0.7",
"description": "Github Action to deplpoy a folder to Neocities.org", "description": "Github Action to deplpoy a folder to Neocities.org",
"main": "index.js", "version": "1.0.7",
"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:changelog": "auto-changelog -p --template keepachangelog auto-changelog --breaking-pattern 'BREAKING:' && git add CHANGELOG.md",
"version:build": "npm run build:action && git add dist",
"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 './**/*.{png,ico}' public",
"build:action": "rm -rf dist && ncc build index.js -o dist -s",
"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/)", "author": "Bret Comnes <bcomnes@gmail.com> (https://bret.io/)",
"license": "MIT",
"bugs": { "bugs": {
"url": "https://github.com/bcomnes/deploy-to-neocities/issues" "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",
"@zeit/ncc": "^0.21.1"
},
"dependencies": { "dependencies": {
"@actions/core": "1.2.2", "@actions/core": "1.2.2",
"async-neocities": "1.1.6", "async-neocities": "1.1.6",
"ms": "^2.1.2", "ms": "^2.1.2",
"nanoassert": "^2.0.0" "nanoassert": "^2.0.0"
},
"devDependencies": {
"@zeit/ncc": "^0.21.1",
"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",
"sitedown": "^4.0.0",
"standard": "^14.3.1"
},
"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 './**/*.{png,ico}' public",
"clean": "rimraf public && mkdirp public",
"postversion": "rm -rf node_modules && mv tmp_modules node_modules",
"release": "git push --follow-tags && gh-release",
"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:' && 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"
]
} }
} }