-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.13 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 1.13 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
{
"name": "@daz4126/swifty",
"version": "2.11.0",
"main": "index.js",
"type": "module",
"bin": {
"swifty": "./src/cli.js"
},
"files": [
"src/"
],
"scripts": {
"test": "mocha",
"build": "node src/build.js",
"start": "node src/build.js && serve dist",
"init": "node src/init.js",
"watch": "node src/watcher.js"
},
"keywords": [
"static",
"site",
"generator"
],
"author": "DAZ",
"license": "MIT",
"description": "Super Speedy Static Site Generator",
"dependencies": {
"chokidar": "^4.0.0",
"eta": "^4.5.0",
"fs-extra": "^11.2.0",
"gray-matter": "^4.0.3",
"highlight.js": "^11.11.1",
"js-yaml": "^4.1.0",
"livereload": "^0.10.3",
"marked": "^14.1.3",
"marked-highlight": "^2.2.1",
"serve": "^14.2.5",
"sharp": "^0.33.5"
},
"devDependencies": {
"mocha": "^11.1.0"
},
"directories": {
"test": "test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/daz4126/swifty.git"
},
"bugs": {
"url": "https://github.com/daz4126/swifty/issues"
},
"homepage": "https://github.com/daz4126/swifty#readme"
}