-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
80 lines (80 loc) · 2 KB
/
Copy pathpackage.json
File metadata and controls
80 lines (80 loc) · 2 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
69
70
71
72
73
74
75
76
77
78
79
80
{
"name": "@the-noah/static-site-generator",
"version": "2.0.0",
"description": "Generate an optimized static website, or use at run-time with a custom server",
"keywords": [
"compress",
"minify",
"optimize",
"cli",
"web",
"website",
"static-website-generator",
"generator",
"build",
"build-tool",
"builder",
"devserver",
"development",
"developer-tools",
"webserver",
"typescript",
"ejs",
"json",
"javascript",
"compressed"
],
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "tsc",
"watch": "tsc -w",
"pretest": "npm run build",
"test": "cd test && node test.js",
"prepare": "npm run build",
"lint": "eslint src/**/*.ts",
"lint:fix": "eslint src/**/*.ts --fix"
},
"repository": {
"type": "git",
"url": "git+https://github.com/The-Noah/static-site-generator.git"
},
"author": "The Noah (https://github.com/The-Noah)",
"license": "MIT",
"bugs": {
"url": "https://github.com/The-Noah/static-site-generator/issues"
},
"homepage": "https://github.com/The-Noah/static-site-generator#readme",
"bin": {
"static-site-generator": "dist/node_cli.js"
},
"dependencies": {
"@toptensoftware/moe-js": "^0.4.0",
"ejs": "^3.1.5",
"html-minifier": "^4.0.0",
"markdown-yaml-metadata-parser": "^2.1.1",
"marked": "^1.2.5",
"node-sass": "^5.0.0",
"svgo": "^1.3.2",
"terser": "^5.5.0",
"toml": "^3.0.0",
"typescript": "^4.1.2",
"ws": "^7.4.0",
"yargs": "^16.1.1"
},
"devDependencies": {
"@types/ejs": "^3.0.5",
"@types/html-minifier": "^4.0.0",
"@types/js-yaml": "^3.12.5",
"@types/marked": "^1.2.0",
"@types/node": "^14.14.10",
"@types/node-sass": "^4.11.1",
"@types/svgo": "^1.3.3",
"@types/terser": "^3.12.0",
"@types/ws": "^7.4.0",
"@types/yargs": "^15.0.10",
"@typescript-eslint/eslint-plugin": "^4.8.2",
"@typescript-eslint/parser": "^4.8.2",
"eslint": "^7.14.0"
}
}