forked from RandomEtc/ejs-locals
-
Notifications
You must be signed in to change notification settings - Fork 36
/
package.json
51 lines (51 loc) · 1.27 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
{
"author": "Jackson Tian <[email protected]>",
"contributors": [
"Jackson Tian <[email protected]> (https://github.com/JacksonTian)",
"Robert Sköld <[email protected]> (http://publicclass.se)",
"Tom Carden <[email protected]>"
],
"name": "ejs-mate",
"description": "Express 4.x locals for layout, partial.",
"version": "4.0.0",
"repository": {
"type": "git",
"url": "git://github.com/JacksonTian/ejs-mate.git"
},
"homepage": "https://github.com/JacksonTian/ejs-mate",
"engines": {
"node": ">=10.0.0"
},
"dependencies": {
"ejs": "^3.1.7"
},
"devDependencies": {
"codecov": "^3.8.3",
"eslint": "^8.15.0",
"express": "^4.10.0",
"mocha": "^10.0.0",
"nyc": "^15.1.0",
"supertest": "^6.2.3"
},
"scripts": {
"lint": "eslint --fix lib test example",
"test": "mocha --inline-diffs -b -R spec test/*.test.js",
"test-cov": "nyc -r=html -r=text -r=lcov npm run test",
"ci": "npm run lint && npm run test-cov && codecov"
},
"bugs": {
"url": "https://github.com/JacksonTian/ejs-mate/issues"
},
"main": "lib/index.js",
"directories": {
"example": "example",
"test": "test"
},
"keywords": [
"ejs",
"layout",
"partial"
],
"license": "MIT",
"files": ["lib"]
}