https://github.com/Microsoft/TypeScript
Raw File
Tip revision: a80a4ba0a42eec068ccf703743f44568f5f4f72f authored by Dan Quirk on 09 July 2015, 23:39:58 UTC
Add jake task for linting the compiler sources
Tip revision: a80a4ba
package.json
{
    "name": "typescript",
    "author": "Microsoft Corp.",
    "homepage": "http://typescriptlang.org/",
    "version": "1.5.3",
    "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"
    },
    "preferGlobal": true,
    "main": "./bin/typescript.js",
    "bin": {
        "tsc": "./bin/tsc",
        "tsserver": "./bin/tsserver"
    },
    "engines": {
        "node": ">=0.8.0"
    },
    "devDependencies": {
        "jake": "latest",
        "mocha": "latest",
        "chai": "latest",
        "browserify": "latest",
        "istanbul": "latest",
        "tslint": "latest"
    },
    "scripts": {
        "test": "jake runtests"
    }
}
back to top