forked from klaascuvelier/gulp-copy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 1.29 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
{
"name": "@fomantic/gulp-copy",
"version": "5.0.0",
"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/fomantic/gulp-copy"
},
"scripts": {
"lint": "eslint ./lib -c ./.eslintrc",
"test": "mocha 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": "[email protected]",
"url": "https://klaascuvelier.io"
},
"license": "MIT",
"engines": {
"node": ">=12"
},
"bugs": {
"url": "https://github.com/klaascuvelier/gulp-copy/issues"
},
"devDependencies": {
"eslint": "^8.26.0",
"eslint-config-gulp": "^5.0.1",
"expect": "^27.5.1",
"mocha": "^9.2.2",
"prettier": "^2.7.1"
},
"dependencies": {
"gulp": "^5.0.0",
"plugin-error": "^2.0.0",
"through2": "^4.0.2"
},
"homepage": "https://github.com/klaascuvelier/gulp-copy"
}