-
Notifications
You must be signed in to change notification settings - Fork 110
/
package.json
63 lines (63 loc) · 1.73 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
{
"name": "tsickle",
"version": "0.47.0",
"description": "Transpile TypeScript code to JavaScript with Closure annotations.",
"main": "out/src/tsickle.js",
"typings": "out/src/tsickle.d.ts",
"directories": {
"test": "test"
},
"files": [
"out/src/*"
],
"peerDependencies": {
"typescript": "~5.1.5"
},
"devDependencies": {
"@types/diff-match-patch": "^1.0.32",
"@types/glob": "7.2.0",
"@types/jasmine": "^4.0.2",
"@types/node": "^17.0.24",
"@types/source-map-support": "^0.5.3",
"diff-match-patch": "^1.0.5",
"glob": "8.0.1",
"google-closure-compiler": "^20230411.0.0",
"jasmine": "^4.1.0",
"jasmine-node": "^3.0.0",
"source-map": "^0.7.3",
"source-map-support": "^0.5.19",
"tslib": "^2.2.0",
"tslint": "^6.1.3",
"typescript": "5.2.2"
},
"scripts": {
"build": "tsc",
"clean": "rm -r out",
"lint": "tslint -c tslint.json -p tsconfig.json",
"test": "jasmine out/test/*.js && (cd demo && yarn && tsc) && yarn run lint",
"prepack": "yarn run clean && yarn run build && yarn run 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",
"dependencies": {
"@types/minimist": "^1.2.1"
}
}