UNPKG

1.47 kBJSONView Raw
1{
2 "name": "rollup-plugin-copy",
3 "description": "Copy files and folders using Rollup",
4 "version": "3.5.0",
5 "author": "Vlad Shcherbin <vlad.shcherbin@gmail.com>",
6 "repository": "vladshcherbin/rollup-plugin-copy",
7 "main": "dist/index.commonjs.js",
8 "module": "dist/index.module.js",
9 "types": "index.d.ts",
10 "scripts": {
11 "clean": "rimraf coverage dist",
12 "build": "rollup -c",
13 "lint": "eslint src tests",
14 "postpublish": "yarn clean",
15 "prepublishOnly": "yarn lint && yarn test && yarn clean && yarn build",
16 "test": "jest"
17 },
18 "dependencies": {
19 "@types/fs-extra": "^8.0.1",
20 "colorette": "^1.1.0",
21 "fs-extra": "^8.1.0",
22 "globby": "10.0.1",
23 "is-plain-object": "^3.0.0"
24 },
25 "devDependencies": {
26 "@babel/core": "^7.12.17",
27 "@babel/preset-env": "^7.12.17",
28 "babel-jest": "^25.5.1",
29 "codecov": "^3.6.1",
30 "eslint": "6.5.1",
31 "eslint-config-airbnb-base": "^14.0.0",
32 "eslint-plugin-import": "^2.20.0",
33 "jest": "^25.5.4",
34 "replace-in-file": "^5.0.2",
35 "rimraf": "^3.0.0",
36 "rollup": "^1.29.0",
37 "rollup-plugin-auto-external": "^2.0.0",
38 "rollup-plugin-babel": "^4.3.3"
39 },
40 "files": [
41 "dist",
42 "index.d.ts",
43 "readme.md"
44 ],
45 "keywords": [
46 "rollup",
47 "rollup-plugin",
48 "copy",
49 "cp",
50 "asset",
51 "assets",
52 "file",
53 "files",
54 "folder",
55 "folders",
56 "glob"
57 ],
58 "engines": {
59 "node": ">=8.3"
60 },
61 "license": "MIT"
62}