-
Notifications
You must be signed in to change notification settings - Fork 109
/
package.json
60 lines (60 loc) · 1.59 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
48
49
50
51
52
53
54
55
56
57
58
59
60
{
"name": "tsickle",
"version": "0.39.1",
"description": "Transpile TypeScript code to JavaScript with Closure annotations.",
"main": "src/tsickle.js",
"typings": "src/tsickle.d.ts",
"directories": {
"test": "test"
},
"files": [
"src/*"
],
"peerDependencies": {
"typescript": "~3.9.5"
},
"devDependencies": {
"@bazel/bazel": "^0.29.0",
"@bazel/jasmine": "^0.38.0",
"@bazel/typescript": "^0.38.0",
"@types/diff-match-patch": "^1.0.32",
"@types/glob": "5.0.35",
"@types/jasmine": "2.8.8",
"@types/node": "^10.5.6",
"diff-match-patch": "^1.0.1",
"glob": "7.1.2",
"google-closure-compiler": "^20190929.0.0",
"jasmine": "3.1.0",
"source-map": "^0.7.3",
"source-map-support": "^0.5.6",
"tslib": "1.11",
"tslint": "5.11.0",
"typescript": "3.9"
},
"scripts": {
"build": "bazel build //:npm_package",
"lint": "tslint -c tslint.json -p tsconfig.json",
"test": "yarn lint && bazel test ..."
},
"repository": {
"type": "git",
"url": "https://github.com/angular/tsickle.git"
},
"keywords": [
"typescript",
"closure"
],
"contributors": [
"Evan Martin <[email protected]> (https://angular.io/)",
"Alex Eagle <[email protected]> (https://angular.io/)",
"Martin Probst <[email protected]> (https://angular.io/)",
"Rado Kirov <[email protected]> (https://angular.io/)",
"Thomas Deegan <[email protected]>"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/angular/tsickle/issues"
},
"homepage": "https://github.com/angular/tsickle",
"private": true
}