UNPKG

4.25 kBJSONView Raw
1{
2 "name": "typescript",
3 "author": "Microsoft Corp.",
4 "homepage": "https://www.typescriptlang.org/",
5 "version": "4.3.5",
6 "license": "Apache-2.0",
7 "description": "TypeScript is a language for application scale JavaScript development",
8 "keywords": [
9 "TypeScript",
10 "Microsoft",
11 "compiler",
12 "language",
13 "javascript"
14 ],
15 "bugs": {
16 "url": "https://github.com/Microsoft/TypeScript/issues"
17 },
18 "repository": {
19 "type": "git",
20 "url": "https://github.com/Microsoft/TypeScript.git"
21 },
22 "main": "./lib/typescript.js",
23 "typings": "./lib/typescript.d.ts",
24 "bin": {
25 "tsc": "./bin/tsc",
26 "tsserver": "./bin/tsserver"
27 },
28 "engines": {
29 "node": ">=4.2.0"
30 },
31 "devDependencies": {
32 "@octokit/rest": "latest",
33 "@types/browserify": "latest",
34 "@types/chai": "latest",
35 "@types/convert-source-map": "latest",
36 "@types/glob": "latest",
37 "@types/gulp": "^4.0.5",
38 "@types/gulp-concat": "latest",
39 "@types/gulp-newer": "latest",
40 "@types/gulp-rename": "0.0.33",
41 "@types/gulp-sourcemaps": "0.0.32",
42 "@types/jake": "latest",
43 "@types/merge2": "latest",
44 "@types/microsoft__typescript-etw": "latest",
45 "@types/minimatch": "latest",
46 "@types/minimist": "latest",
47 "@types/mkdirp": "latest",
48 "@types/mocha": "latest",
49 "@types/ms": "latest",
50 "@types/node": "latest",
51 "@types/node-fetch": "^2.3.4",
52 "@types/q": "latest",
53 "@types/source-map-support": "latest",
54 "@types/through2": "latest",
55 "@types/xml2js": "^0.4.0",
56 "@typescript-eslint/eslint-plugin": "^4.19.0",
57 "@typescript-eslint/experimental-utils": "^4.19.0",
58 "@typescript-eslint/parser": "^4.19.0",
59 "async": "latest",
60 "azure-devops-node-api": "^10.1.0",
61 "browser-resolve": "^1.11.2",
62 "browserify": "latest",
63 "chai": "latest",
64 "chalk": "latest",
65 "convert-source-map": "latest",
66 "del": "5.1.0",
67 "diff": "^4.0.2",
68 "eslint": "7.12.1",
69 "eslint-formatter-autolinkable-stylish": "1.1.4",
70 "eslint-plugin-import": "2.22.1",
71 "eslint-plugin-jsdoc": "30.7.6",
72 "eslint-plugin-no-null": "1.0.2",
73 "fancy-log": "latest",
74 "fs-extra": "^9.0.0",
75 "glob": "latest",
76 "gulp": "^4.0.0",
77 "gulp-concat": "latest",
78 "gulp-insert": "latest",
79 "gulp-newer": "latest",
80 "gulp-rename": "latest",
81 "gulp-sourcemaps": "latest",
82 "istanbul": "latest",
83 "merge2": "latest",
84 "minimist": "latest",
85 "mkdirp": "latest",
86 "mocha": "latest",
87 "mocha-fivemat-progress-reporter": "latest",
88 "ms": "latest",
89 "node-fetch": "^2.6.0",
90 "plugin-error": "latest",
91 "pretty-hrtime": "^1.0.3",
92 "prex": "^0.4.3",
93 "q": "latest",
94 "remove-internal": "^2.9.2",
95 "source-map-support": "latest",
96 "through2": "latest",
97 "typescript": "^4.2.3",
98 "vinyl": "latest",
99 "vinyl-sourcemaps-apply": "latest",
100 "xml2js": "^0.4.19"
101 },
102 "scripts": {
103 "prepare": "gulp build-eslint-rules",
104 "pretest": "gulp tests",
105 "test": "gulp runtests-parallel --light=false",
106 "test:eslint-rules": "gulp run-eslint-rules-tests",
107 "build": "npm run build:compiler && npm run build:tests",
108 "build:compiler": "gulp local",
109 "build:tests": "gulp tests",
110 "start": "node lib/tsc",
111 "clean": "gulp clean",
112 "gulp": "gulp",
113 "jake": "gulp",
114 "lint": "gulp lint",
115 "lint:ci": "gulp lint --ci",
116 "lint:compiler": "gulp lint-compiler",
117 "lint:scripts": "gulp lint-scripts",
118 "setup-hooks": "node scripts/link-hooks.js"
119 },
120 "browser": {
121 "fs": false,
122 "os": false,
123 "path": false,
124 "crypto": false,
125 "buffer": false,
126 "@microsoft/typescript-etw": false,
127 "source-map-support": false,
128 "inspector": false
129 },
130 "volta": {
131 "node": "14.15.5"
132 }
133}