Chromium Code Reviews| OLD | NEW |
|---|---|
| 1 { | 1 { |
| 2 "name": "ts2dart", | 2 "name": "js_facade_gen", |
| 3 "version": "0.9.1-1", | 3 "version": "0.0.1", |
| 4 "description": "Transpile TypeScript code to Dart", | 4 "description": "Generate Dart package:js JS Interop faces for arbitrary TypeSc ript libraries.", |
| 5 "main": "build/lib/main.js", | 5 "main": "build/lib/main.js", |
| 6 "typings": "build/definitions/main.d.ts", | 6 "typings": "build/definitions/main.d.ts", |
| 7 "directories": { | 7 "directories": { |
| 8 "test": "test" | 8 "test": "test" |
| 9 }, | 9 }, |
| 10 "dependencies": { | 10 "dependencies": { |
| 11 "dart-style": "^0.2.7", | 11 "dart-style": "^0.2.7", |
| 12 "minimist": "^1.1.1", | 12 "minimist": "^1.1.1", |
| 13 "source-map": "^0.4.2", | 13 "source-map": "^0.4.2", |
| 14 "source-map-support": "^0.3.1", | 14 "source-map-support": "^0.3.1", |
| (...skipping 17 matching lines...) Expand all Loading... | |
| 32 "tslint": "^3.7.1", | 32 "tslint": "^3.7.1", |
| 33 "which": "^1.0.9" | 33 "which": "^1.0.9" |
| 34 }, | 34 }, |
| 35 "scripts": { | 35 "scripts": { |
| 36 "prepublish": "npm install tsd@^0.6.0 && tsd reinstall --overwrite && gulp c ompile", | 36 "prepublish": "npm install tsd@^0.6.0 && tsd reinstall --overwrite && gulp c ompile", |
| 37 "test": "gulp test", | 37 "test": "gulp test", |
| 38 "release": "npm-release" | 38 "release": "npm-release" |
| 39 }, | 39 }, |
| 40 "repository": { | 40 "repository": { |
| 41 "type": "git", | 41 "type": "git", |
| 42 "url": "https://github.com/angular/ts2dart.git" | 42 "url": "https://github.com/dart-lang/js_facade_gen.git" |
| 43 }, | 43 }, |
| 44 "keywords": [ | 44 "keywords": [ |
| 45 "typescript", | 45 "typescript", |
| 46 "dart" | 46 "dart" |
| 47 ], | 47 ], |
| 48 "contributors": [ | 48 "contributors": [ |
| 49 "Alex Eagle <alexeagle@google.com> (https://angularjs.org/)", | 49 "Jacob Richman <jacobr@google.com> (https://www.dartlang.org/)", |
|
kevmoo
2016/08/08 17:28:04
remove trailing comma
kevmoo
2016/08/08 17:28:05
Also: should we just have this be "Dart project au
| |
| 50 "Martin Probst <martinprobst@google.com> (https://angularjs.org/)" | |
| 51 ], | 50 ], |
| 52 "license": "Apache-2.0", | 51 "license": "Apache-2.0", |
| 53 "bugs": { | 52 "bugs": { |
| 54 "url": "https://github.com/angular/ts2dart/issues" | 53 "url": "https://github.com/dart-lang/js_facade_gen/issues" |
| 55 }, | 54 }, |
| 56 "homepage": "https://github.com/angular/ts2dart" | 55 "homepage": "https://github.com/dart-lang/js_facade_gen" |
| 57 } | 56 } |
| OLD | NEW |