-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.23 KB
/
package.json
File metadata and controls
57 lines (57 loc) · 1.23 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
{
"name": "@rhinostone/swig",
"version": "2.7.3",
"description": "A simple, powerful, and extendable templating engine for node.js and browsers, similar to Django, Jinja2, and Twig.",
"keywords": [
"template",
"templating",
"html",
"django",
"jinja",
"twig",
"express",
"block"
],
"repository": {
"type": "git",
"url": "https://github.com/gina-io/swig.git"
},
"author": "Paul Armstrong <paul@paularmstrongdesigns.com>",
"contributors": [
"Rhinostone <contact@gina.io>"
],
"dependencies": {
"@rhinostone/swig-core": "2.7.3"
},
"devDependencies": {
"esbuild": "^0.28.0",
"eslint": "^9",
"express": "^4",
"globals": "^16",
"lodash": "^4",
"path-browserify": "^1.0.1",
"terser": "^5.46.1"
},
"license": "MIT",
"main": "index",
"workspaces": [
"packages/*"
],
"engines": {
"node": ">=12"
},
"bin": {
"swig": "./bin/swig.js"
},
"scripts": {
"prepublish": "npm prune && make build",
"test": "make lint && make test reporter=spec && make coverage"
},
"publishConfig": {
"access": "public"
},
"homepage": "https://github.com/gina-io/swig#readme",
"bugs": {
"url": "https://github.com/gina-io/swig/issues"
}
}