TypeScript/package.json

43 lines
1 KiB
JSON
Raw Normal View History

2014-07-13 01:04:16 +02:00
{
2015-01-30 21:03:21 +01:00
"name": "typescript",
"author": "Microsoft Corp.",
"homepage": "http://typescriptlang.org/",
2015-05-21 01:38:13 +02:00
"version": "1.5.3",
"license": "Apache-2.0",
2015-01-30 21:03:21 +01:00
"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,
"main": "./bin/typescript.js",
2015-01-30 21:03:21 +01:00
"bin": {
"tsc": "./bin/tsc",
"tsserver": "./bin/tsserver"
2015-01-30 21:03:21 +01:00
},
"engines": {
"node": ">=0.8.0"
},
"devDependencies": {
"jake": "latest",
"mocha": "latest",
"chai": "latest",
"browserify": "latest",
"istanbul": "latest",
"mocha-fivemat-progress-reporter": "latest"
2015-01-30 21:03:21 +01:00
},
"scripts": {
2015-03-17 20:15:13 +01:00
"test": "jake runtests"
2015-01-30 21:03:21 +01:00
}
2014-07-13 01:04:16 +02:00
}