-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.18 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.18 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
{
"name": "basic-ejs-layout",
"version": "0.3.4",
"description": "Template system based on ejs for nodejs/express/loopback 3.x modules",
"main": "index.js",
"scripts": {
"vpublish": "npm version patch -m \"Version %s\" && npm publish",
"test": "mocha --reporter spec",
"cover": "node_modules/istanbul/lib/cli.js cover node_modules/mocha/bin/_mocha -- -R spec test/*"
},
"engines": {
"node": ">=4.0.0"
},
"repository": {
"type": "git",
"url": "git://github.com/arondn2/basic-ejs-layout.git"
},
"keywords": [
"nodejs",
"template",
"ejs",
"express",
"loopback",
"layout",
"modules"
],
"author": "Alex J. Rondon <arondn2@gmail.com> (https://github.com/arondn2)",
"license": "MIT",
"bugs": {
"url": "https://github.com/arondn2/basic-ejs-layout/issues"
},
"devDependencies": {
"assert": "^1.4.1",
"chai": "^4.2.0",
"coveralls": "^3.0.2",
"express": "^4.16.3",
"istanbul": "^0.4.5",
"mocha": "^8.1.1",
"supertest": "^3.3.0",
"supertest-as-promised": "^4.0.2"
},
"ignore": [
"**/.*",
"node_modules",
"examples",
"tests"
],
"dependencies": {
"ejs": "^2.6.1"
}
}