-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
28 lines (28 loc) · 649 Bytes
/
package.json
File metadata and controls
28 lines (28 loc) · 649 Bytes
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
{
"name": "@edemaine/shtml2html",
"version": "0.1.0",
"description": "Convert Apache server-side rendered HTML to static HTML",
"type": "module",
"main": "shtml2html.js",
"bin": {
"shtml2html": "shtml2html.js"
},
"files": [
"shtml2html.civet",
"tsconfig.json"
],
"scripts": {
"prepare": "civet -c shtml2html.civet --js -o .js",
"test": "echo \"Error: no test specified\" && exit 1"
},
"author": "Erik Demaine",
"license": "MIT",
"dependencies": {
"strftime": "^0.10.0"
},
"devDependencies": {
"@danielx/civet": "^0.6.8",
"@types/node": "^20.3.1",
"@types/strftime": "^0.9.4"
}
}