build(offline compiler): package the compiler-cli for users

Closes #8341
This commit is contained in:
Alex Eagle
2016-04-29 10:35:36 -07:00
committed by Alex Eagle
parent ca13f1c024
commit db95fd6ca9
7 changed files with 133 additions and 62 deletions
+37
View File
@@ -0,0 +1,37 @@
{
"name": "angular2-template-compiler",
"version": "0.1.3",
"description": "Execute angular2 template compiler in nodejs.",
"main": "index.js",
"typings": "index.d.ts",
"bin": {
"ng2tc": "./main.js"
},
"dependencies": {
"angular2": "angular/angular#2.0.0-build.cacdead.js",
"ts-metadata-collector": "^0.1.0",
"tsickle": "^0.1.0",
"reflect-metadata": "^0.1.2",
"parse5": "1.3.2"
},
"peerDependencies": {
"typescript": "^1.8.0 || ^1.9.0-dev"
},
"repository": {
"type": "git",
"url": "https://github.com/angular/angular.git"
},
"keywords": [
"angular",
"compiler"
],
"contributors": [
"Tobias Bosch <tbosch@google.com> (https://angular.io/)",
"Alex Eagle <alexeagle@google.com> (https://angular.io/)"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/angular/angular/issues"
},
"homepage": "https://github.com/angular/angular/tree/master/tools/compiler_cli"
}