-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
58 lines (58 loc) · 1.4 KB
/
package.json
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
{
"name": "tateru-cli",
"version": "1.3.2",
"description": "Simple CLI static site builder tool with Twig.",
"keywords": [
"cli",
"generator",
"html",
"javascript",
"npm",
"site",
"static",
"static-site-generation",
"static-site-generator",
"twig",
"twigjs"
],
"homepage": "https://github.com/danielsitek/tateru-cli#readme",
"repository": "github:danielsitek/tateru-cli",
"license": "MIT",
"author": {
"name": "Daniel Sitek",
"email": "dan.sitek@gmail.com",
"url": "https://danielsitek.cz"
},
"files": [
"dist"
],
"main": "./dist/index.js",
"bin": {
"tateru-cli": "./dist/tateru-cli.js"
},
"scripts": {
"example": "cd ./example && node ../dist/tateru-cli.js tateru.config.json",
"example:prod": "cd ./example && node ../dist/tateru-cli.js tateru.config.json --env prod",
"dist": "rm -rf dist/* && npx tsc",
"test": "run-simple-tests",
"cli": "npx ts-node src/tateru-cli.ts example/tateru.config.json"
},
"dependencies": {
"html-minifier": "4",
"js-beautify": "1",
"meow": "8",
"twig": "1"
},
"devDependencies": {
"@types/html-minifier": "4",
"@types/js-beautify": "1",
"@types/node": "14",
"@types/twig": "1",
"simple-test-framework": "file:local_modules/simple-test-framework",
"typescript": "3"
},
"engines": {
"node": ">=10"
},
"types": "./src/types.d.ts"
}