forked from yousifalraheem/rollup-plugin-summary
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
110 lines (110 loc) · 2.91 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
{
"name": "rollup-plugin-summary",
"version": "0.0.0-semantically-released",
"description": "A rollup plugin that summarizes the build",
"main": "./dist/cjs/index.js",
"module": "./dist/es/index.js",
"types": "./index.d.ts",
"typings": "./index.d.ts",
"repository": "https://github.com/yousifalraheem/rollup-plugin-summary.git",
"homepage": "https://yousifalraheem.github.io/rollup-plugin-summary/",
"bugs": {
"url": "https://github.com/yousifalraheem/rollup-plugin-summary/issues"
},
"author": "Yousif Al-Raheem <[email protected]>",
"license": "MIT",
"keywords": [
"rollup",
"plugin",
"size",
"file",
"filesize",
"summary",
"table"
],
"files": [
"dist",
"!dist/**/*.map",
"types",
"README.md",
"LICENSE"
],
"scripts": {
"prebuild": "rm -rf dist/*",
"build": "rollup -c",
"postbuild": "node scripts/pre-release.js",
"build:docs": "node scripts/pre-docs.js",
"test": "jest",
"test:project": "npm run build --prefix test-project",
"lint": "eslint .",
"release": "semantic-release",
"commit": "cz",
"prepare": "husky install",
"format:check": "prettier --check .",
"format:all": "prettier --write ."
},
"dependencies": {
"brotli-size": "^4.0.0",
"cli-table3": "^0.6.3",
"filesize": "^10.0.5",
"gzip-size": "^7.0.0",
"terser": "^5.15.1"
},
"devDependencies": {
"@babel/core": "^7.20.2",
"@babel/plugin-transform-modules-commonjs": "^7.19.6",
"@babel/preset-env": "^7.20.2",
"@babel/preset-typescript": "^7.18.6",
"@commitlint/cli": "^17.2.0",
"@commitlint/config-conventional": "^17.2.0",
"@rollup/plugin-commonjs": "^23.0.2",
"@rollup/plugin-json": "^5.0.1",
"@rollup/plugin-node-resolve": "^15.0.1",
"@rollup/plugin-typescript": "^9.0.2",
"@types/jest": "^29.2.2",
"@types/node": "^18.11.9",
"@typescript-eslint/eslint-plugin": "^5.42.1",
"@typescript-eslint/parser": "^5.42.1",
"babel-jest": "^29.3.0",
"babel-preset-jest": "^29.2.0",
"commitizen": "^4.2.5",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^8.27.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-jest": "^27.1.4",
"fs-extra": "^10.1.0",
"husky": "^8.0.2",
"jest": "^29.3.0",
"lint-staged": "^13.0.3",
"prettier": "^2.7.1",
"regenerator-runtime": "^0.13.10",
"rollup": "^3.0.0",
"rollup-plugin-node-externals": "^5.0.2",
"rollup-plugin-node-resolve": "^5.2.0",
"semantic-release": "^21.0.1",
"ts-jest": "^29.0.3",
"typescript": "^4.8.4"
},
"peerDependencies": {
"rollup": "^2.68.0||^3.0.0||^4.0.0"
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"release": {
"branches": [
"main"
],
"pkgRoot": "dist"
},
"engines": {
"node": ">=14.0.0"
}
}