-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
70 lines (70 loc) · 1.78 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
{
"name": "@beforesemicolon/html-plus",
"version": "0.7.0",
"description": "HTML Template Engine/Language",
"main": "dist/index.js",
"files": [
"dist"
],
"homepage": "https://html-plus.beforesemicolon.com/",
"scripts": {
"tests": "jest",
"tests:coverage": "jest --coverage",
"build": "rm -rf dist && tsc",
"build:docs": "NODE_ENV=production node website/build.js",
"local": "nodemon --watch website -e '*' --exec node website/server.js",
"serve": "NODE_ENV=production PORT=4500 node website/server.js"
},
"keywords": [
"template engine",
"template language",
"compiler",
"builder",
"static website",
"html",
"express",
"nodejs"
],
"engines": {
"node": ">= 14.0.0",
"npm": ">= 6.0.0"
},
"repository": {
"type": "git",
"url": "https://github.com/beforesemicolon/html-plus"
},
"author": "Elson Correia",
"license": "MIT",
"browserslist": "> 0.25%, not dead",
"dependencies": {
"@fullhuman/postcss-purgecss": "^4.0.3",
"chalk": "^4.1.1",
"cssnano": "^4.1.10",
"esbuild": "^0.11.1",
"html-minifier": "^4.0.0",
"less": "^4.1.1",
"node-sass": "^8.0.0",
"postcss": "^8.2.9",
"postcss-discard-comments": "^5.0.1",
"postcss-import": "^14.0.2",
"postcss-preset-env": "^6.7.0",
"postcss-url": "^10.1.3",
"purgecss-from-html": "^4.0.3",
"serialize-javascript": "^6.0.0",
"stylus": "^0.54.8",
"valid-url": "^1.0.9",
"highlight.js": "^11.0.1"
},
"devDependencies": {
"@types/express": "^4.17.12",
"@types/node": "^15.12.4",
"express": "^4.17.1",
"htmlparser-benchmark": "^1.1.3",
"jest": "^26.6.3",
"nodemon": "^2.0.7",
"supertest": "^6.1.4",
"ts-node": "^10.0.0",
"tslib": "^2.3.0",
"typescript": "^4.3.4"
}
}