forked from ampproject/rollup-plugin-closure-compiler
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
97 lines (97 loc) · 3.07 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
{
"name": "@liquid-js/rollup-plugin-closure-compiler",
"version": "0.27.8",
"description": "Rollup + Google Closure Compiler",
"type": "module",
"main": "./lib/index.mjs",
"types": "./lib/index.d.ts",
"exports": {
"./package.json": {
"default": "./package.json"
},
".": {
"types": "./lib/index.d.ts",
"require": "./lib/index.cjs",
"import": "./lib/index.mjs"
}
},
"files": [
"lib"
],
"peerDependencies": {
"google-closure-compiler": "^20240317.0.0",
"rollup": ">=4.30"
},
"dependencies": {
"@ampproject/remapping": "^2.3.0",
"acorn": "^8.14.0",
"acorn-walk": "^8.3.4",
"estree-walker": "^3.0.3",
"magic-string": "^0.30.17"
},
"devDependencies": {
"@commitlint/cli": "^19.6.1",
"@commitlint/config-conventional": "^19.6.0",
"@rollup/plugin-typescript": "^12.1.2",
"@stylistic/eslint-plugin": "^2.12.1",
"@types/estree": "^1.0.6",
"@types/google-closure-compiler": "^20231112.0.0",
"@types/node": "<23.0.0",
"ava": "^6.2.0",
"builtins": "^5.1.0",
"c8": "^10.1.3",
"clean-package": "^2.2.0",
"codecov": "^3.8.3",
"commit-and-tag-version": "^12.5.0",
"cross-env": "^7.0.3",
"eslint": "^9.17.0",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-jsdoc": "^50.6.1",
"eslint-plugin-prefer-arrow-functions": "^3.6.0",
"eslint-plugin-unused-imports": "^4.1.4",
"google-closure-compiler": "20210808.0.0",
"husky": "^9.1.7",
"npm-check-updates": "^17.1.13",
"rimraf": "^6.0.1",
"rollup": "^4.30.1",
"ts-node-maintained": "^10.9.4",
"typedoc": "^0.27.6",
"typescript": "^5.7.3",
"typescript-eslint": "^8.19.1"
},
"scripts": {
"build": "rimraf lib && rollup -c rollup.config.ts --configPlugin @rollup/plugin-typescript",
"test": "ava",
"coverage": "c8 ava && c8 report --reporter=html",
"lint": "eslint . --fix",
"prepublishOnly": "npm run build",
"prepare": "husky",
"release": "git diff --exit-code && commit-and-tag-version && git push --follow-tags origin",
"docs": "typedoc",
"prepack": "clean-package",
"postpack": "clean-package restore"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Liquid-JS/rollup-plugin-closure-compiler.git"
},
"keywords": [
"rollup-plugin"
],
"author": "HitkoDev <development@hitko.si>",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/Liquid-JS/rollup-plugin-closure-compiler/issues"
},
"homepage": "https://liquid-js.github.io/rollup-plugin-closure-compiler/",
"packageManager": "yarn@4.6.0",
"clean-package": {
"remove": [
"packageManager",
"scripts",
"devDependencies",
"clean-package",
"publishConfig"
]
}
}