-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
49 lines (49 loc) · 1.35 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
{
"name": "mojo-plugin-ejs",
"version": "1.1.6",
"description": "Adds ejs template support to mojo.js",
"keywords": [
"mojojs",
"ejs",
"html"
],
"dependencies": {
"@mojojs/core": "^1.25.0",
"@mojojs/path": "^1.4.2",
"ejs": "^3.1.8",
"lru-cache": "^7.10.1"
},
"type": "module",
"author": "Sebastian Riedel <s@kraih.com>",
"devDependencies": {
"c8": "^10.1.2",
"eslint": "^8.17.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^5.0.0",
"prettier": "^3.0.0",
"tap": "^21.0.1"
},
"exports": "./lib/ejs.js",
"files": [
"lib/"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/mojolicious/mojo-plugin-ejs.git"
},
"bugs": {
"url": "https://github.com/mojolicious/mojo-plugin-ejs/issues"
},
"homepage": "https://mojojs.org",
"scripts": {
"coverage": "c8 tap --disable-coverage --allow-empty-coverage test/*.js",
"coverage:ci": "c8 --reporter lcovonly tap --disable-coverage --allow-empty-coverage test/*.js",
"lint": "eslint \"test/*.js\" \"lib/*.js\"",
"publish:minor": "npm version minor && npm publish",
"publish:patch": "npm version patch && npm publish",
"test": "tap --disable-coverage --allow-empty-coverage test/*.js"
}
}