forked from mentaljam/rollup-plugin-zip
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
52 lines (52 loc) · 1.2 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
{
"name": "rollup-plugin-zip",
"version": "0.5.1",
"description": "Rollup plugin to zip up emitted files.",
"homepage": "https://github.com/mentaljam/rollup-plugin-zip",
"repository": {
"type": "git",
"url": "git+ssh://github.com/mentaljam/rollup-plugin-zip"
},
"bugs": {
"url": "https://github.com/mentaljam/rollup-plugin-zip/issues"
},
"main": "dist/index.cjs.js",
"module": "dist/index.es.js",
"types": "dist/index.d.ts",
"files": [
"dist",
"LICENSE",
"README.md"
],
"scripts": {
"build": "rollup -c",
"lint": "tslint -p .",
"pretest": "npm run build",
"test": "node test/test.js"
},
"keywords": [
"rollup",
"plugin",
"zip"
],
"author": "Petr Tsymbarovich <[email protected]>",
"license": "MIT",
"dependencies": {
"yazl": "^2.5.1"
},
"devDependencies": {
"@types/yauzl": "^2.9.1",
"@types/yazl": "^2.4.1",
"colors": "^1.3.3",
"rollup": "^1.20.2",
"rollup-plugin-tslint": "^0.2.2",
"rollup-plugin-typescript2": "^0.23.0",
"tslint": "^5.19.0",
"tslint-config-prettier": "^1.18.0",
"typescript": "^3.5.3",
"yauzl": "^2.10.0"
},
"peerDependencies": {
"rollup": ">=1.20.2"
}
}