forked from microsoft/TypeScript
-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
57 lines (57 loc) · 1.39 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
51
52
53
54
55
56
57
{
"name": "jsx-typescript",
"author": "Microsoft Corp.",
"homepage": "https://github.com/fdecampredon/jsx-typescript/",
"version": "1.5.0-alpha.6",
"licenses": [
{
"type": "Apache License 2.0",
"url": "https://github.com/Microsoft/TypeScript/blob/master/LICENSE.txt"
}
],
"description": "TypeScript fork with React jsx support",
"keywords": [
"TypeScript",
"Microsoft",
"compiler",
"language",
"javascript",
"react",
"jsx"
],
"bugs": {
"url": "https://github.com/fdecampredon/jsx-typescript/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/fdecampredon/jsx-typescript.git"
},
"preferGlobal": true,
"main": "./bin/typescriptServices.js",
"bin": {
"jsx-tsc": "./bin/jsx-tsc"
},
"engines": {
"node": ">=0.8.0"
},
"devDependencies": {
"jake": "latest",
"mocha": "latest",
"chai": "latest",
"browserify": "latest",
"istanbul": "latest",
"codeclimate-test-reporter": "latest"
},
"scripts": {
"test": "jake generate-code-coverage"
},
"files": [
"bin",
"LICENSE.txt",
"README.md",
"CONTRIBUTING.md",
"ThirdPartyNoticeText.txt",
"CopyrightNotice.txt",
"typings"
]
}