-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.02 KB
/
package.json
File metadata and controls
42 lines (42 loc) · 1.02 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
{
"name": "js-template-engine",
"version": "1.0.1",
"description": "A dynamic templating engine that translates JavaScript or JSON data into structured templates across multiple languages.",
"main": "index.js",
"bin": {
"js-template-engine": "./bin/cli.js"
},
"scripts": {
"example:react": "node examples/react.js",
"example:bem": "node examples/bem.js",
"example:slots": "node examples/slots.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/djurnamn/js-template-engine.git"
},
"keywords": [
"javascript",
"js",
"template",
"templating",
"engine",
"json",
"react",
"bem"
],
"author": "Björn Djurnamn <bjorn@djurnamn.co>",
"license": "MIT",
"bugs": {
"url": "https://github.com/djurnamn/js-template-engine/issues"
},
"homepage": "https://github.com/djurnamn/js-template-engine",
"dependencies": {
"signale": "^1.4.0",
"yargs": "^17.7.2",
"prettier": "^3.2.5"
},
"devDependencies": {
"eslint": "^8.0.1"
}
}