-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.21 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.21 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
48
49
50
51
52
53
{
"name": "rollup-plugin-ejs",
"version": "4.0.1",
"description": "ejs loader plugin for rollup.js",
"type": "module",
"author": "Serhii Trofimets <azarija@gmail.com>",
"license": "MIT",
"homepage": "https://github.com/trofima/rollup-plugin-ejs",
"keywords": [
"rollup-plugin",
"ejs",
"template"
],
"exports": {
"import": "./dist/rollup-plugin-ejs.js",
"require": "./dist/rollup-plugin-ejs.cjs"
},
"repository": {
"type": "git",
"url": "git+https://github.com/trofima/rollup-plugin-ejs.git"
},
"bugs": {
"url": "https://github.com/trofima/rollup-plugin-ejs/issues"
},
"files": [
"dist",
"README.md"
],
"scripts": {
"pretest": "npm run build",
"test": "mocha test/*.js",
"prebuild": "rm -rf dist/*",
"build": "rollup -c"
},
"peerDependencies": {
"html-minifier": ">=4",
"sass": ">=1"
},
"dependencies": {
"@rollup/pluginutils": "^5.1.4",
"ejs": "^3.1.10"
},
"devDependencies": {
"@babel/core": "^7.26.0",
"@rollup/plugin-babel": "^6.0.4",
"@rollup/plugin-node-resolve": "^16.0.0",
"chai": "^5.1.2",
"html-minifier": "^4.0.0",
"mocha": "^11.0.1",
"sass": "^1.83.0",
"rollup": "^4.29.1"
}
}