forked from Asana/bazeltsc
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
47 lines (47 loc) · 1.01 KB
/
package.json
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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
{
"name": "bazeltsc",
"version": "1.1.1",
"description": "A Bazel persistent worker for compiling TypeScript",
"keywords": [
"compiler",
"tsc",
"javasript"
],
"engines": {
"npm": ">=4.0"
},
"bin": {
"bazeltsc": "bin/bazeltsc"
},
"files": [
"bin/*",
"dist/*",
"tsc.bzl"
],
"repository": "Asana/bazel-tsc",
"scripts": {
"build": "./build.sh",
"prepare": "npm run build",
"clean": "rm -rf node_modules lib dist",
"test": "echo \"Error: no test specified\" && exit 1"
},
"author": "Mike Morearty (https://github.com/mmorearty)",
"license": "MIT",
"peerDependencies": {
"typescript": ">= 2.0.2"
},
"devDependencies": {
"@types/google-protobuf": "^3.2.7",
"@types/minimist": "^1.2.0",
"@types/node": "^10.5.5",
"google-protobuf": "^3.6.1",
"ts-protoc-gen": "^0.7.6",
"tslint": "^5.11.0",
"typescript": "^3.0.1",
"webpack": "^4.16.4",
"webpack-command": "^0.4.1"
},
"dependencies": {
"minimist": "^1.2.0"
}
}