-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 1.04 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
{
"name": "seo-friendly",
"version": "2.0.2",
"description": "Zero-configuration framework-agnostic static pre-rendering for SPAs",
"main": "index.js",
"author": "punarinta",
"license": "MIT",
"repository": "punarinta/seo-friendly",
"engines": {
"node": ">= 12.0.0"
},
"dependencies": {
"clean-css": "5.3.1",
"express": "4.18.2",
"express-history-api-fallback": "2.2.1",
"glob-to-regexp": "^0.4.1",
"highland": "2.13.5",
"html-minifier": "4.0.0",
"minimalcss": "0.11.3",
"mkdirp": "1.0.4",
"puppeteer": "^19.4.1",
"serve-static": "1.15.0",
"sourcemapped-stacktrace-node": "2.1.8"
},
"devDependencies": {
"dev-null-stream": "0.0.1",
"jest": "29.3.1",
"markdown-toc": "1.2.0",
"prettier": "2.8.2"
},
"scripts": {
"toc": "yarn run markdown-toc -i doc/recipes.md",
"test": "jest",
"precommit": "prettier --write {*,src/*}.{js,json,css}"
},
"bin": {
"seo-friendly": "./run.js"
},
"files": [
"index.js",
"run.js",
"src/",
"vendor/"
]
}