UNPKG

grunt-move

Version:

Grunt task for moving and renaming files and directories

92 lines (91 loc) 1.94 kB
{ "name": "grunt-move", "description": "Grunt task for moving and renaming files and directories", "version": "2.0.0", "homepage": "https://github.com/prantlf/grunt-move", "author": { "name": "Ferdinand Prantl", "email": "prantlf@gmail.com", "url": "http://prantl.tk" }, "repository": { "type": "git", "url": "https://github.com/prantlf/grunt-move.git" }, "bugs": { "url": "https://github.com/prantlf/grunt-move/issues" }, "license": "MIT", "licenses": [ { "type": "MIT", "url": "https://github.com/prantlf/grunt-move/blob/master/LICENSE" } ], "engines": { "node": ">=10" }, "main": "tasks/move.js", "files": [ "tasks" ], "scripts": { "check": "grunt", "test": "c8 grunt" }, "c8": { "check-coverage": true, "include": [ "tasks/move.js" ], "reporter": [ "text", "lcov" ], "branches": 100, "lines": 100, "functions": 100, "statements": 100 }, "release": { "plugins": [ "@semantic-release/commit-analyzer", "@semantic-release/release-notes-generator", "@semantic-release/changelog", "@semantic-release/npm", [ "@semantic-release/github", { "failComment": false } ], "@semantic-release/git" ] }, "dependencies": { "async": "~3.2.4", "colorette": "^2.0.19" }, "devDependencies": { "@semantic-release/changelog": "^6.0.1", "@semantic-release/git": "^10.0.1", "c8": "^7.12.0", "grunt": "^1.5.3", "grunt-continue-ext": "^2.0.0", "grunt-contrib-clean": "^2.0.1", "grunt-contrib-copy": "^1.0.0", "grunt-contrib-jshint": "^3.2.0", "grunt-contrib-nodeunit": "^4.0.0", "jshint-stylish": "^2.2.1", "time-grunt": "^2.0.0" }, "keywords": [ "gruntplugin", "grunt", "move", "rename", "file", "folder", "filesystem" ] }