TypeScript/package.json

60 lines
1.5 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/",
2016-01-26 02:08:15 +01:00
"version": "1.9.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",
"typings": "./lib/typescript.d.ts",
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",
2016-01-30 02:23:17 +01:00
"mocha": "latest",
2015-01-30 21:03:21 +01:00
"chai": "latest",
"browserify": "latest",
"istanbul": "latest",
2015-07-11 03:10:18 +02:00
"mocha-fivemat-progress-reporter": "latest",
2015-11-11 22:30:26 +01:00
"tslint": "next",
"typescript": "next",
2015-09-25 02:04:57 +02:00
"tsd": "latest"
2015-01-30 21:03:21 +01:00
},
"scripts": {
"pretest": "jake tests",
2015-10-02 21:45:33 +02:00
"test": "jake runtests",
"build": "npm run build:compiler && npm run build:tests",
"build:compiler": "jake local",
"build:tests": "jake tests",
2015-09-25 02:00:27 +02:00
"clean": "jake clean",
2015-09-25 02:07:02 +02:00
"jake": "jake",
"lint": "jake lint",
2015-11-11 22:58:09 +01:00
"setup-hooks": "node scripts/link-hooks.js"
},
"browser": {
"buffer": false,
2015-08-21 20:32:53 +02:00
"fs": false,
"os": false,
"path": false
}
2014-07-13 01:04:16 +02:00
}