-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 1.51 KB
/
package.json
File metadata and controls
63 lines (63 loc) · 1.51 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
{
"name": "@squirrel-forge/twighouse",
"version": "0.9.0",
"description": "A simple, but extendable, json+twig render tool for node",
"main": "src/classes/TwigHouse.js",
"scripts": {
"setup": "node src/install.js",
"postinstall": "npm run-script setup",
"update-docs": "cd example && ../bin/cli ../docs -m -i --dev",
"test": "echo \"Error: no test specified\" && exit 1"
},
"bin": {
"twighouse": "bin/cli"
},
"directories": {
"bin": "bin",
"example": "example",
"src": "src"
},
"repository": {
"type": "git",
"url": "git+https://github.com/squirrel-forge/node-twighouse.git"
},
"keywords": [
"node",
"twig",
"json",
"html",
"build"
],
"author": "Daniel Hartwell <me@siux.info> (http://siux.info)",
"license": "MIT",
"bugs": {
"url": "https://github.com/squirrel-forge/node-twighouse/issues"
},
"homepage": "https://github.com/squirrel-forge/node-twighouse#readme",
"engines": {
"node": ">= 10.0.0"
},
"peerDependencies": {
"showdown": "^2.x"
},
"peerDependenciesMeta": {
"showdown": {
"optional": true
}
},
"dependencies": {
"@squirrel-forge/node-cfx": "^1.x",
"@squirrel-forge/node-util": "^1.x",
"cli-spinner": "^0.2.x",
"directory-tree": "^3.x",
"html-minifier": "^4.x",
"intercept-stdout": "^0.1.x",
"is-installed-globally": "^0.4.x",
"recursive-copy": "^2.x",
"twig": "^1.x"
},
"optionalDependencies": {
"file-type": "^16.x",
"image-size": "^1.x"
}
}