TypeScript/package.json

59 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/",
2015-09-16 00:08:48 +02:00
"version": "1.7.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",
"mocha": "latest",
"chai": "latest",
"browserify": "latest",
"istanbul": "latest",
2015-07-11 03:10:18 +02:00
"mocha-fivemat-progress-reporter": "latest",
"tslint": "latest",
2015-09-25 02:04:57 +02:00
"tsd": "latest"
2015-01-30 21:03:21 +01:00
},
"scripts": {
"pretest": "jake tests",
"test": "jake runtests && npm run lint",
"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-09-25 20:39:42 +02: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
}