-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
48 lines (48 loc) · 1.11 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": "template-jsx",
"version": "1.0.0",
"description": "Template rendering engine for JSX",
"main": "dist/index.js",
"types": "./dist/index.d.ts",
"scripts": {
"build": "tsc",
"build:test": "tsc -p ./examples/tsconfig.json",
"prepublish": "npm run build",
"test": "npm run build:test && node ./dist/test/index.js",
"test:express": "npm run build:test && node ./dist/test/express.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/blaumeise20/template-jsx.git"
},
"bugs": {
"url": "https://github.com/blaumeise20/template-jsx/issues"
},
"homepage": "https://github.com/blaumeise20/template-jsx#readme",
"author": "blaumeise20",
"license": "MIT",
"keywords": [
"jsx",
"template",
"templates",
"render",
"rendering",
"renderer",
"html",
"server",
"backend",
"webserver",
"express"
],
"dependencies": {
"@types/express": "^4.17.11"
},
"peerDependencies": {
"express": "^4.17.1"
},
"devDependencies": {
"@types/node": "^14.14.34",
"express": "^4.17.1",
"typescript": "^4.1.3"
}
}