2014-07-13 03:04:16 +04:00
|
|
|
{
|
2014-10-28 22:11:52 +03:00
|
|
|
"name": "typescript",
|
|
|
|
"author": "Microsoft Corp.",
|
|
|
|
"homepage": "http://typescriptlang.org/",
|
2015-01-30 23:02:08 +03:00
|
|
|
"version": "1.5.0",
|
2014-10-28 22:11:52 +03:00
|
|
|
"licenses": [
|
|
|
|
{
|
|
|
|
"type": "Apache License 2.0",
|
|
|
|
"url": "https://github.com/Microsoft/TypeScript/blob/master/LICENSE.txt"
|
|
|
|
}
|
|
|
|
],
|
|
|
|
"description": "TypeScript is a language for application scale JavaScript development",
|
|
|
|
"keywords": [
|
|
|
|
"TypeScript",
|
|
|
|
"Microsoft",
|
|
|
|
"compiler",
|
|
|
|
"language",
|
|
|
|
"javascript"
|
|
|
|
],
|
|
|
|
"bugs": {
|
|
|
|
"url" : "https://github.com/Microsoft/TypeScript/issues"
|
|
|
|
},
|
|
|
|
"repository" : {
|
|
|
|
"type" : "git",
|
|
|
|
"url" : "https://github.com/Microsoft/TypeScript.git"
|
|
|
|
},
|
|
|
|
"preferGlobal" : true,
|
2014-12-11 01:38:14 +03:00
|
|
|
"main" : "./bin/typescriptServices.js",
|
2014-10-28 22:11:52 +03:00
|
|
|
"bin" : {
|
|
|
|
"tsc" : "./bin/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"
|
|
|
|
}
|
2014-07-13 03:04:16 +04:00
|
|
|
}
|