This repository has been archived by the owner on Jan 10, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
60 lines (60 loc) · 1.61 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
{
"version": "2.2.1",
"name": "webrender",
"homepage": "https://www.npmjs.com/package/webrender",
"description": "Run live web and build static site using pure HTML/JS/CSS, with PostCSS, Rollup",
"repository": {
"type": "git",
"url": "https://github.com/ndaidong/webrender"
},
"author": "@ndaidong",
"engines": {
"node": ">= 10.14.2"
},
"bin": {
"webren": "./index.js"
},
"main": "./index.js",
"scripts": {
"lint": "eslint .",
"pretest": "npm run lint",
"test": "ENV=test jest --verbose --coverage=true --detectOpenHandles",
"posttest": "rm -rf ./outputs"
},
"dependencies": {
"@rollup/plugin-commonjs": "^15.0.0",
"@rollup/plugin-node-resolve": "^9.0.0",
"@rollup/plugin-replace": "^2.3.3",
"@rollup/plugin-strip": "^2.0.0",
"autoprefixer": "^9.8.6",
"bellajs": "^9.2.0",
"cheerio": "^1.0.0-rc.3",
"clean-css": "^4.2.3",
"cors": "^2.8.5",
"express": "^4.17.1",
"html-minifier": "^4.0.0",
"minimist": "^1.2.5",
"morgan": "^1.10.0",
"nunjucks": "^3.2.2",
"postcss": "^7.0.32",
"postcss-custom-media": "^7.0.8",
"postcss-custom-properties": "^9.1.1",
"postcss-import": "^12.0.1",
"postcss-nested": "^4.2.3",
"postcss-short": "^5.0.0",
"pretty": "^2.0.0",
"rollup": "^2.26.3",
"rollup-plugin-cleanup": "^3.1.1",
"rotating-file-stream": "^2.1.3",
"strip-css-comments": "^4.1.0",
"terser": "^5.1.0",
"winston": "^3.3.3"
},
"devDependencies": {
"coveralls": "^3.1.0",
"eslint-config-goes": "^1.1.8",
"jest": "^26.4.0",
"supertest": "^4.0.2"
},
"license": "MIT"
}