-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 822 Bytes
/
package.json
File metadata and controls
38 lines (38 loc) · 822 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
{
"name": "@pineview/ejs",
"publishConfig": {
"access": "public"
},
"description": "Embedded JavaScript templates",
"keywords": [
"template",
"engine",
"ejs"
],
"version": "0.3.0-preview",
"author": "Matthew Eernisse <mde@fleegix.org> (http://fleegix.org)",
"license": "Apache-2.0",
"bin": {
"ejs": "./bin/cli.js"
},
"main": "./lib/ejs.js",
"jsdelivr": "ejs.min.js",
"unpkg": "ejs.min.js",
"repository": {
"type": "git",
"url": "https://github.com/PostDocJS/ejs"
},
"bugs": "https://github.com/PostDocJS/ejs/issues",
"homepage": "https://github.com/PostDocJS/ejs",
"devDependencies": {
"eslint": "^6.8.0",
"lru-cache": "^4.0.1",
"mocha": "^10.2.0"
},
"engines": {
"node": ">=0.10.0"
},
"scripts": {
"test": "mocha -u tdd"
}
}