forked from iAmServerless/rollup-plugin-gzip
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.31 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1.31 KB
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
{
"name": "rollup-plugin-gzip",
"version": "2.0.0",
"description": "Compress your Rollup bundle with Gzip",
"keywords": [
"rollup",
"rollup-plugin",
"gzip",
"compress"
],
"main": "./dist/index.js",
"jsnext:main": "./dist-es/index.js",
"module": "./dist-es/index.js",
"es2015": "./dist-es/index.js",
"typings": "./dist/index.d.ts",
"scripts": {
"build": "tsc && tsc --project tsconfig-es.json",
"clean": "rimraf dist dist-es",
"format": "prettier --config .prettierrc ./src/**",
"lint": "tslint --project .",
"test": "ava test/**/*.test.js",
"prepare": "npm run clean && npm run build && npm run format && npm run lint && npm run test"
},
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/kryops/rollup-plugin-gzip.git"
},
"author": "Michael Strobel <michael@kryops.de>",
"license": "MIT",
"bugs": {
"url": "https://github.com/kryops/rollup-plugin-gzip/issues"
},
"homepage": "https://github.com/kryops/rollup-plugin-gzip#readme",
"devDependencies": {
"@types/node": "^10.11.0",
"ava": "^0.25.0",
"prettier": "^1.14.3",
"rimraf": "^2.6.2",
"rollup": "^0.66.2",
"tslint": "^5.11.0",
"tslint-config-prettier": "^1.15.0",
"typescript": "^3.0.3"
},
"peerDependencies": {
"rollup": ">=0.60.0"
}
}