forked from angular/tsickle
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
66 lines (66 loc) · 1.75 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
61
62
63
64
65
66
{
"name": "tsickle",
"version": "0.36.0",
"description": "Transpile TypeScript code to JavaScript with Closure annotations.",
"main": "src/tsickle.js",
"typings": "src/tsickle.d.ts",
"bin": "src/main.js",
"directories": {
"test": "test"
},
"files": [
"src/*"
],
"dependencies": {
"minimist": "^1.2.0",
"mkdirp": "^0.5.1",
"source-map": "^0.7.3"
},
"peerDependencies": {
"typescript": "~3.4.1"
},
"devDependencies": {
"@bazel/bazel": "^0.28.0",
"@bazel/typescript": "^0.33.1",
"@types/diff-match-patch": "^1.0.32",
"@types/glob": "5.0.35",
"@types/jasmine": "2.8.8",
"@types/minimist": "1.2.0",
"@types/mkdirp": "0.5.2",
"@types/node": "^10.5.6",
"clang-format": "^1.2.4",
"diff-match-patch": "^1.0.1",
"glob": "7.1.2",
"google-closure-compiler": "^20181125.0.1",
"jasmine": "3.1.0",
"prettier": "1.14.0",
"source-map-support": "^0.5.6",
"tslint": "5.11.0",
"typescript": "~3.4.1"
},
"scripts": {
"build": "bazel build //:npm_package",
"test": "node check_format.js && tslint -c tslint.json -p tsconfig.json && 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
}