-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
51 lines (51 loc) · 1.06 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
{
"name": "statictron",
"version": "4.1.2",
"type": "module",
"description": "Build a static website using ejs.",
"bin": {
"statictron": "bin/cli.js"
},
"main": "lib/index.js",
"scripts": {
"test": "c8 node test"
},
"files": [
"lib/**/*",
"bin/**/*"
],
"keywords": [
"static",
"static-site-generator",
"content"
],
"author": {
"name": "Mark Wylde",
"email": "me@markwylde.com",
"url": "https://github.com/markwylde"
},
"license": "MIT",
"dependencies": {
"chokidar": "^4.0.1",
"cssbun": "^2.1.0",
"debounce": "^2.1.1",
"ejs": "^3.1.10",
"globby": "^14.0.2",
"js-beautify": "^1.15.1",
"micromatch": "^4.0.8",
"minimist": "^1.2.8",
"object-path": "^0.11.8"
},
"repository": {
"type": "git",
"url": "git+https://github.com/markwylde/statictron.git"
},
"bugs": {
"url": "https://github.com/markwylde/statictron/issues"
},
"homepage": "https://github.com/markwylde/statictron#readme",
"devDependencies": {
"basictap": "^4.3.5",
"c8": "^10.1.2"
}
}