forked from angular/tsickle
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
78 lines (78 loc) · 2.23 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
67
68
69
70
71
72
73
74
75
76
77
78
{
"name": "tsickle",
"version": "0.25.5",
"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.5.6",
"source-map-support": "^0.4.2"
},
"peerDependencies": {
"typescript": ">=2.4.2 <2.6"
},
"devDependencies": {
"@bazel/typescript": "^0.3.1",
"@types/chai": "^3.4.32",
"@types/diff": "^3.2.0",
"@types/glob": "^5.0.29",
"@types/google-closure-compiler": "0.0.18",
"@types/jasmine": "^2.6.0",
"@types/minimatch": "^2.0.28",
"@types/minimist": "^1.1.28",
"@types/mkdirp": "^0.3.28",
"@types/node": "^6.0.38",
"@types/source-map": "^0.5.1",
"@types/source-map-support": "^0.2.27",
"chai": "^3.5.0",
"chai-diff": "^1.0.1",
"clang-format": "^1.0.55",
"diff": "^3.2.0",
"glob": "^7.0.0",
"google-closure-compiler": "^20161024.1.0",
"gulp": "^3.8.11",
"gulp-clang-format": "^1.0.22",
"gulp-tslint": "^8.1.0",
"gulp-typescript": "^3.0.0",
"jasmine": "~2.8.0",
"merge2": "^1.0.2",
"temp": "^0.8.1",
"tslint": "^5.4.2",
"typescript": "~2.5.3"
},
"scripts": {
"prepublishOnly": "echo 'DO NOT PUBLISH HERE, RUN ./publish.sh'; false",
"build": "bazel build //src/... && mkdir built && cp -R bazel-bin/src built/src && cp package.json README.md built",
"clean": "rm -rf built",
"test": "gulp test.check-format && gulp test.check-lint && bazel test ..."
},
"repository": {
"type": "git",
"url": "https://github.com/angular/tsickle.git"
},
"keywords": [
"typescript",
"closure"
],
"contributors": [
"Evan Martin <evanm@google.com> (https://angular.io/)",
"Alex Eagle <alexeagle@google.com> (https://angular.io/)",
"Martin Probst <martinprobst@google.com> (https://angular.io/)",
"Rado Kirov <radokirov@google.com> (https://angular.io/)",
"Thomas Deegan <tdeegan@google.com>"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/angular/tsickle/issues"
},
"homepage": "https://github.com/angular/tsickle"
}