forked from bazelbuild/rules_typescript
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 751 Bytes
/
package.json
File metadata and controls
31 lines (31 loc) · 751 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
{
"name": "@bazel/typescript",
"description": "Custom TypeScript compiler for hosting on Bazel",
"homepage": "https://github.com/bazelbuild/rules_typescript",
"license": "Apache-2.0",
"version": "0.0.0-PLACEHOLDER",
"keywords": [
"typescript",
"bazel"
],
"main": "./tsc_wrapped/index.js",
"typings": "./tsc_wrapped/index.d.ts",
"peerDependencies": {
"typescript": ">=2.4.2"
},
"dependencies": {
"protobufjs": "5.0.3",
"source-map-support": "0.5.9",
"tsutils": "2.27.2"
},
"devDependencies": {
"@types/jasmine": "2.8.2",
"@types/node": "7.0.18",
"@types/tmp": "0.0.33",
"tmp": "0.0.33",
"typescript": "2.7.2"
},
"scripts": {
"postinstall": "node ./check_version.js"
}
}