-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
48 lines (48 loc) · 1.14 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": "typescript-transform-jsx",
"version": "1.5.5",
"description": "Typescript transform jsx to string",
"keywords": [
"jsx",
"templates",
"tsx",
"typesafe",
"typescript"
],
"homepage": "https://github.com/LeDDGroup/typescript-transform-jsx#readme",
"bugs": {
"url": "https://github.com/LeDDGroup/typescript-transform-jsx/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/LeDDGroup/typescript-transform-jsx.git"
},
"license": "MIT",
"author": "Daniel Perez Alvarez <[email protected]>",
"files": [
"dist"
],
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"prebuild": "rm -rf dist",
"build": "tsc -p tsconfig-build.json",
"prepare": "npm run build",
"release": "standard-version",
"test": "jest"
},
"jest": {
"preset": "ts-jest",
"testEnvironment": "node"
},
"dependencies": {},
"devDependencies": {
"@types/jest": "^24.0.5",
"@types/node": "^10.12.18",
"jest": "^23.6.0",
"safe-eval": "^0.4.1",
"standard-version": "^8.0.1",
"ts-jest": "^23.10.4",
"typescript": "^3.1.6"
}
}