-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
50 lines (50 loc) · 1.45 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
{
"name": "jsx2tag",
"version": "0.3.1",
"description": "Enable JSX for Template Literal Tags based projects",
"main": "./cjs/index.js",
"types": "./index.d.ts",
"scripts": {
"build": "npm run cjs && npm run test && npm run types",
"cjs": "ascjs --no-default esm cjs",
"coveralls": "c8 report --reporter=text-lcov | coveralls",
"test": "cd test; npx babel index.jsx -d ./ && c8 node index.js && rm -rf ../coverage && mv coverage ../ && cd .. && c8 report --reporter=text",
"types": "tsc --declaration --allowJs --emitDeclarationOnly --outDir ./ esm/index.js"
},
"keywords": [
"JSX",
"template",
"tag",
"transformer"
],
"author": "Andrea Giammarchi",
"license": "ISC",
"devDependencies": {
"@babel/cli": "^7.14.5",
"@babel/core": "^7.14.6",
"@babel/plugin-transform-react-jsx": "^7.14.5",
"@ungap/plugin-transform-static-jsx": "^0.2.0",
"ascjs": "^5.0.1",
"c8": "^7.7.3",
"coveralls": "^3.1.0",
"typescript": "^4.3.4",
"uhtml-ssr": "^0.7.1"
},
"module": "./esm/index.js",
"type": "module",
"exports": {
".": {
"import": "./esm/index.js",
"default": "./cjs/index.js"
},
"./package.json": "./package.json"
},
"repository": {
"type": "git",
"url": "git+https://github.com/WebReflection/jsx2tag.git"
},
"bugs": {
"url": "https://github.com/WebReflection/jsx2tag/issues"
},
"homepage": "https://github.com/WebReflection/jsx2tag#readme"
}