-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
48 lines (48 loc) · 1.26 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
{
"name": "express-preact-views",
"version": "1.1.0",
"description": "This is an Express view engine which renders preact components on server.",
"keywords": [
"express",
"view engine",
"preact"
],
"main": "index.js",
"types": "index.d.ts",
"scripts": {
"lint": "eslint --ext=js,jsx .",
"test": "node test"
},
"authors": [
"Eduardo Justi <[email protected]>",
"Andrew Nichols <[email protected]>",
"Paul O’Shannessy <[email protected]>",
"React Authors (https://facebook.github.io/react)"
],
"repository": {
"type": "git",
"url": "https://github.com/edwjusti/express-preact-views.git"
},
"license": "BSD-3-Clause",
"peerDependencies": {
"preact": "^10.4.5"
},
"dependencies": {
"babel-preset-env": "^1.6.0",
"babel-preset-preact": "^1.1.0",
"babel-register": "^6.26.0",
"js-beautify": "^1.7.3",
"lodash.escaperegexp": "^4.1.2",
"preact-render-to-string": "^5.1.9"
},
"devDependencies": {
"eslint": "^4.17.0",
"preact": "^10.4.5"
},
"files": [
"index.js",
"index.d.ts",
"package.json",
"README.md"
]
}