-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
33 lines (33 loc) · 988 Bytes
/
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
{
"name": "deno-html-react-transformer",
"version": "1.2.1",
"description": "Deno HTML-to-React Transformer",
"author": {
"name": "Chakrit W.",
"email": "[email protected]",
"url": "https://github.com/quaos/"
},
"license": "MIT",
"keywords": [
"deno",
"typescript",
"html",
"dom",
"react",
"transform"
],
"repository": {
"github": "https://github.com/quaos/deno-html-react-transformer"
},
"scripts": {
"deno:cache": "deno cache src/deps/*.ts",
"test": "deno test --allow-read --allow-net",
"test:transformer": "deno run --allow-read --allow-net src/transformer.test.tsx",
"example:deno:cache": "deno cache example/src/deps/*.ts",
"example:build": "deno bundle example/src/client.tsx example/public/assets/js/client.bundle.js",
"example:run": "deno run --allow-net --allow-read --allow-run example/src/server.ts --browse example"
},
"dependencies": {},
"devDependencies": {},
"private": true
}