-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 1007 Bytes
/
package.json
File metadata and controls
39 lines (39 loc) · 1007 Bytes
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
{
"name": "compile-ejs-loader",
"version": "0.0.3",
"description": "webpack loader use to compile ejs templates (without frontend dependencies)",
"author": "Long Wei",
"license": "MIT",
"repository": "defims/compile-ejs-loader",
"homepage": "https://github.com/defims/compile-ejs-loader",
"bugs": "https://github.com/defims/compile-ejs-loader/issues",
"main": "index.js",
"scripts": {
"test": "jest"
},
"jest": {
"testEnvironment": "node",
"testPathIgnorePatterns": [
"__tests__/lib/",
"__tests__/test-data/"
]
},
"devDependencies": {
"jest": "^26.6.3",
"@babel/core": "^7.12.10",
"@babel/preset-env": "^7.12.11",
"babel-jest": "^26.6.3",
"memfs": "^3.2.0",
"webpack": "^5.18.0"
},
"peerDependencies": {
"webpack": "^5.18.0"
},
"dependencies": {
"ejs": "^3.1.5",
"html-minifier": "^4.0.0",
"uglify-js": "^3.12.5",
"@webpack-contrib/schema-utils": "^1.0.0-beta.0",
"loader-utils": "^2.0.0"
}
}