forked from jaredwray/ecto
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 1.53 KB
/
package.json
File metadata and controls
68 lines (68 loc) · 1.53 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
{
"name": "ecto",
"version": "0.9.7",
"description": "Modern Template Consolidation Engine for EJS, Markdown, Pug, Nunjucks, and Handlebars",
"main": "./dist/ecto.js",
"types": "./dist/ecto.d.ts",
"repository": "https://github.com/jaredwray/ecto.git",
"author": "Jared Wray <me@jaredwray.com>",
"license": "MIT",
"keywords": [
"templates",
"generator",
"framework",
"html",
"handlebars",
"hbs",
"markdown",
"hjs",
"ejs",
"consolidate",
"consolidatejs",
"pug",
"jade",
"nunjucks",
"njk",
"mustache",
"liquid",
"liquidjs"
],
"scripts": {
"watch": "tsc -w -p .",
"clean": "rm -rf ./dist && rm -rf node_modules",
"test": "jest --coverage",
"compile": "tsc -p .",
"build": "yarn && yarn test && yarn compile"
},
"dependencies": {
"ejs": "^3.1.6",
"fs-extra": "^9.1.0",
"handlebars": "^4.7.7",
"handlebars-helpers": "^0.10.0",
"helper-date": "^1.0.1",
"liquidjs": "^9.23.1",
"marked": "^2.0.1",
"mustache": "^4.1.0",
"nunjucks": "^3.2.3",
"pug": "^3.0.2",
"winston": "^3.3.3"
},
"devDependencies": {
"@types/ejs": "^3.0.6",
"@types/express": "^4.11.1",
"@types/fs-extra": "^9.0.8",
"@types/handlebars-helpers": "^0.5.2",
"@types/jest": "^26.0.20",
"@types/mustache": "^4.1.1",
"@types/nunjucks": "^3.1.4",
"@types/pug": "^2.0.4",
"codecov": "^3.5.0",
"jest": "^26.6.3",
"ts-jest": "^26.5.3",
"typescript": "^4.2.3"
},
"files": [
"dist",
"bin"
]
}