42 lines
1.3 KiB
JSON
42 lines
1.3 KiB
JSON
{
|
|
"name": "gulp-copy",
|
|
"version": "4.0.1",
|
|
"description": "Plugin copying files to a new destination and using that destination for other actions",
|
|
"main": "index.js",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/klaascuvelier/gulp-copy"
|
|
},
|
|
"scripts": {
|
|
"lint": "eslint ./lib -c ./.eslintrc",
|
|
"test": "./node_modules/.bin/jasmine-node test/spec",
|
|
"prettier": "prettier --write '**/*.{js,jsx,ts,tsx,css,less,md,json}'",
|
|
"prettier-check": "prettier --list-different '**/*.{js,jsx,ts,tsx,css,less,md,json}'"
|
|
},
|
|
"keywords": [
|
|
"gulpplugin",
|
|
"copy",
|
|
"gulp"
|
|
],
|
|
"author": {
|
|
"name": "Klaas Cuvelier",
|
|
"email": "cuvelierklaas@gmail.com",
|
|
"url": "http://klaascuvelier.io"
|
|
},
|
|
"license": "MIT",
|
|
"bugs": {
|
|
"url": "https://github.com/klaascuvelier/gulp-copy/issues"
|
|
},
|
|
"devDependencies": {
|
|
"eslint": "^5.2.0",
|
|
"eslint-config-kentcdodds": "^14.0.0",
|
|
"jasmine-node": "^2.0.1",
|
|
"prettier": "^1.14.0"
|
|
},
|
|
"dependencies": {
|
|
"gulp": "^4.0.0",
|
|
"plugin-error": "^0.1.2",
|
|
"through2": "^2.0.3"
|
|
},
|
|
"homepage": "https://github.com/klaascuvelier/gulp-copy"
|
|
}
|