TypeScript/package.json

51 lines
1.3 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-07-15 02:25:34 +02:00
"version": "1.6.0",
"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"
},
2015-07-27 19:07:07 +02:00
"main": "./lib/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",
2015-07-11 03:10:18 +02:00
"mocha-fivemat-progress-reporter": "latest",
2015-06-26 01:24:02 +02:00
"tslint": "latest"
2015-01-30 21:03:21 +01:00
},
"scripts": {
"pretest": "jake tests",
"test": "jake runtests",
"build": "npm run build:compiler && npm run build:tests",
"build:compiler": "jake local",
"build:tests": "jake tests",
"clean": "jake clean"
},
"browser": {
"fs": false
}
2014-07-13 01:04:16 +02:00
}