forked from dart-archive/ts2dart
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
53 lines (53 loc) · 1.36 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
{
"name": "ts2dart",
"version": "0.8.0",
"description": "Transpile TypeScript code to Dart",
"main": "build/lib/main.js",
"typings": "build/definitions/main.d.ts",
"directories": {
"test": "test"
},
"dependencies": {
"dart-style": "^0.2.6",
"minimist": "^1.1.1",
"source-map": "^0.4.2",
"source-map-support": "^0.3.1",
"typescript": "mprobst/TypeScript#pathMappingModuleResolution"
},
"devDependencies": {
"chai": "^2.1.1",
"clang-format": "^1.0.34",
"fs-extra": "^0.18.0",
"gulp": "^3.8.11",
"gulp-clang-format": "^1.0.21",
"gulp-mocha": "^2.0.0",
"gulp-sourcemaps": "^1.5.0",
"gulp-typescript": "^2.7.6",
"gulp-util": "^3.0.4",
"merge2": "^0.3.1",
"temp": "^0.8.1",
"tsd": "^0.6.0",
"which": "^1.0.9"
},
"scripts": {
"prepublish": "npm install tsd@^0.6.0 && tsd reinstall --overwrite && gulp compile",
"test": "gulp test"
},
"repository": {
"type": "git",
"url": "https://github.com/angular/ts2dart.git"
},
"keywords": [
"typescript",
"dart"
],
"contributors": [
"Alex Eagle <alexeagle@google.com> (https://angularjs.org/)",
"Martin Probst <martinprobst@google.com> (https://angularjs.org/)"
],
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/angular/ts2dart/issues"
},
"homepage": "https://github.com/angular/ts2dart"
}