https://github.com/Microsoft/TypeScript
Raw File
Tip revision: 1e35593437f52cb3eee272db0e19d644e891e06a authored by Ron Buckton on 05 February 2016, 02:14:39 UTC
Adds the transformFiles API
Tip revision: 1e35593
package.json
{
    "name": "typescript",
    "author": "Microsoft Corp.",
    "homepage": "http://typescriptlang.org/",
    "version": "1.9.0",
    "license": "Apache-2.0",
    "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"
    },
    "main": "./lib/typescript.js",
    "typings": "./lib/typescript.d.ts",
    "bin": {
        "tsc": "./bin/tsc",
        "tsserver": "./bin/tsserver"
    },
    "engines": {
        "node": ">=0.8.0"
    },
    "devDependencies": {
        "jake": "latest",
        "mocha": "latest",
        "chai": "latest",
        "browserify": "latest",
        "istanbul": "latest",
        "mocha-fivemat-progress-reporter": "latest",
        "tslint": "next",
        "typescript": "next",
        "tsd": "latest"
    },
    "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",
        "jake": "jake",
        "lint": "jake lint",
        "setup-hooks": "node scripts/link-hooks.js"
    },
    "browser": {
        "buffer": false,
        "fs": false,
        "os": false,
        "path": false
    }
}
back to top