mirror of
https://github.com/bcomnes/deploy-to-neocities.git
synced 2026-01-16 22:56:28 +00:00
55 lines
1.4 KiB
JSON
55 lines
1.4 KiB
JSON
{
|
|
"name": "deploy-to-neocities",
|
|
"version": "0.0.0",
|
|
"description": "Github Action to deplpoy a folder to Neocities.org",
|
|
"main": "index.js",
|
|
"module": "main.js",
|
|
"private": true,
|
|
"scripts": {
|
|
"test": "run-s test:*",
|
|
"test-skip:deps": "dependency-check . --no-dev --no-peer",
|
|
"test:standard": "semistandard",
|
|
"test:tape": "tape -r esm test.js",
|
|
"prepare": "run-s build",
|
|
"clean": "rimraf dist && mkdirp dist",
|
|
"build": "run-s clean build:*",
|
|
"build:browserify": "rollup --config"
|
|
},
|
|
"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": {
|
|
"builtin-modules": "^3.1.0",
|
|
"dependency-check": "^4.1.0",
|
|
"esm": "^3.2.25",
|
|
"mkdirp": "^0.5.1",
|
|
"npm-run-all": "^4.1.5",
|
|
"rimraf": "^3.0.0",
|
|
"rollup": "^1.26.5",
|
|
"rollup-plugin-commonjs": "^10.1.0",
|
|
"rollup-plugin-node-resolve": "^5.2.0",
|
|
"semistandard": "^14.2.0",
|
|
"tape": "^4.11.0",
|
|
"tape-promise": "^4.0.0"
|
|
},
|
|
"dependencies": {
|
|
"@actions/core": "^1.2.0",
|
|
"@actions/github": "^1.1.0",
|
|
"nanoassert": "^2.0.0",
|
|
"qs": "^6.9.1"
|
|
},
|
|
"semistandard": {
|
|
"ignore": [
|
|
"dist"
|
|
]
|
|
}
|
|
}
|