-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
58 lines (58 loc) · 1.3 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
47
48
49
50
51
52
53
54
55
56
57
58
{
"name": "rollup-plugin-delete",
"description": "Delete files and folders using Rollup",
"version": "2.1.0",
"author": "Vlad Shcherbin <[email protected]>",
"repository": "vladshcherbin/rollup-plugin-delete",
"main": "dist/index.cjs.js",
"module": "dist/index.es.js",
"types": "index.d.ts",
"scripts": {
"clean": "rimraf coverage dist",
"build": "rollup -c",
"lint": "eslint src tests",
"postpublish": "yarn clean",
"prepublishOnly": "yarn lint && yarn test && yarn clean && yarn build",
"test": "jest"
},
"dependencies": {
"del": "^5.1.0"
},
"peerDependencies": {
"rollup": "*"
},
"devDependencies": {
"@babel/core": "^7.10.2",
"@babel/preset-env": "^7.10.2",
"babel-jest": "^26.0.1",
"eslint": "^6.8.0",
"eslint-config-airbnb-base": "^14.1.0",
"eslint-plugin-import": "^2.21.2",
"fs-extra": "^9.0.1",
"jest": "^26.0.1",
"replace-in-file": "^6.1.0",
"rimraf": "^3.0.2",
"rollup": "^2.15.0",
"rollup-plugin-auto-external": "^2.0.0"
},
"files": [
"dist",
"index.d.ts",
"readme.md"
],
"keywords": [
"rollup",
"rollup-plugin",
"delete",
"clear",
"clean",
"remove",
"file",
"folder",
"directory"
],
"engines": {
"node": ">=10"
},
"license": "MIT"
}