UNPKG

3.92 kBJSONView Raw
1{
2 "name": "typescript",
3 "author": "Microsoft Corp.",
4 "homepage": "https://www.typescriptlang.org/",
5 "version": "4.7.4",
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 "packageManager": "npm@6.14.15",
32 "devDependencies": {
33 "@octokit/rest": "latest",
34 "@types/chai": "latest",
35 "@types/convert-source-map": "latest",
36 "@types/glob": "latest",
37 "@types/gulp": "^4.0.9",
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/merge2": "latest",
43 "@types/microsoft__typescript-etw": "latest",
44 "@types/minimatch": "latest",
45 "@types/minimist": "latest",
46 "@types/mkdirp": "latest",
47 "@types/mocha": "latest",
48 "@types/ms": "latest",
49 "@types/node": "latest",
50 "@types/node-fetch": "^2.3.4",
51 "@types/q": "latest",
52 "@types/source-map-support": "latest",
53 "@types/xml2js": "^0.4.0",
54 "@typescript-eslint/eslint-plugin": "^4.28.0",
55 "@typescript-eslint/experimental-utils": "^4.28.0",
56 "@typescript-eslint/parser": "^4.28.0",
57 "async": "latest",
58 "azure-devops-node-api": "^11.0.1",
59 "chai": "latest",
60 "chalk": "^4.1.2",
61 "convert-source-map": "latest",
62 "del": "5.1.0",
63 "diff": "^4.0.2",
64 "eslint": "7.12.1",
65 "eslint-formatter-autolinkable-stylish": "1.1.4",
66 "eslint-plugin-import": "2.22.1",
67 "eslint-plugin-jsdoc": "30.7.6",
68 "eslint-plugin-no-null": "1.0.2",
69 "fancy-log": "latest",
70 "fs-extra": "^9.0.0",
71 "glob": "latest",
72 "gulp": "^4.0.0",
73 "gulp-concat": "latest",
74 "gulp-insert": "latest",
75 "gulp-newer": "latest",
76 "gulp-rename": "latest",
77 "gulp-sourcemaps": "latest",
78 "merge2": "latest",
79 "minimist": "latest",
80 "mkdirp": "latest",
81 "mocha": "latest",
82 "mocha-fivemat-progress-reporter": "latest",
83 "ms": "^2.1.3",
84 "node-fetch": "^2.6.1",
85 "prex": "^0.4.3",
86 "q": "latest",
87 "source-map-support": "latest",
88 "typescript": "^4.5.5",
89 "vinyl": "latest",
90 "vinyl-sourcemaps-apply": "latest",
91 "xml2js": "^0.4.19"
92 },
93 "scripts": {
94 "prepare": "gulp build-eslint-rules",
95 "pretest": "gulp tests",
96 "test": "gulp runtests-parallel --light=false",
97 "test:eslint-rules": "gulp run-eslint-rules-tests",
98 "build": "npm run build:compiler && npm run build:tests",
99 "build:compiler": "gulp local",
100 "build:tests": "gulp tests",
101 "start": "node lib/tsc",
102 "clean": "gulp clean",
103 "gulp": "gulp",
104 "lint": "gulp lint",
105 "lint:ci": "gulp lint --ci",
106 "lint:compiler": "gulp lint-compiler",
107 "lint:scripts": "gulp lint-scripts",
108 "setup-hooks": "node scripts/link-hooks.js"
109 },
110 "browser": {
111 "fs": false,
112 "os": false,
113 "path": false,
114 "crypto": false,
115 "buffer": false,
116 "@microsoft/typescript-etw": false,
117 "source-map-support": false,
118 "inspector": false
119 },
120 "volta": {
121 "node": "14.15.5"
122 }
123}