2017-08-21 15:23:47 +00:00
|
|
|
{
|
|
|
|
|
"name": "angular-bazel",
|
|
|
|
|
"description": "example and integration test for building Angular apps with Bazel",
|
|
|
|
|
"version": "0.0.0",
|
|
|
|
|
"license": "MIT",
|
|
|
|
|
"dependencies": {
|
2018-08-21 08:37:09 +00:00
|
|
|
"reflect-metadata": "file:../../node_modules/reflect-metadata",
|
2017-09-09 01:40:32 +00:00
|
|
|
"rxjs": "file:../../node_modules/rxjs",
|
2018-08-21 08:37:09 +00:00
|
|
|
"tslib": "file:../../node_modules/tslib",
|
2017-09-09 01:40:32 +00:00
|
|
|
"zone.js": "file:../../node_modules/zone.js"
|
2017-08-21 15:23:47 +00:00
|
|
|
},
|
|
|
|
|
"devDependencies": {
|
2018-09-12 01:11:32 +00:00
|
|
|
"@bazel/typescript": "0.17.0",
|
2018-08-21 08:37:09 +00:00
|
|
|
"@types/jasmine": "file:../../node_modules/@types/jasmine",
|
2018-05-29 22:35:48 +00:00
|
|
|
"@types/source-map": "0.5.1",
|
|
|
|
|
"protractor": "file:../../node_modules/protractor",
|
2018-08-21 08:37:09 +00:00
|
|
|
"tsickle": "file:../../node_modules/tsickle",
|
2018-05-29 22:35:48 +00:00
|
|
|
"typescript": "file:../../node_modules/typescript"
|
2017-08-21 15:23:47 +00:00
|
|
|
},
|
|
|
|
|
"scripts": {
|
2018-07-06 21:51:37 +00:00
|
|
|
"test": "bazel build ... --noshow_progress && bazel test ..."
|
2017-08-21 15:23:47 +00:00
|
|
|
}
|
2018-07-06 21:51:37 +00:00
|
|
|
}
|