2017-02-06 13:40:28 -05:00
|
|
|
{
|
|
|
|
"name": "aio-scripts-js",
|
|
|
|
"version": "1.0.0",
|
|
|
|
"description": "Performing various tasks on PR build artifacts for angular.io.",
|
|
|
|
"repository": "https://github.com/angular/angular.git",
|
|
|
|
"author": "Angular",
|
|
|
|
"license": "MIT",
|
|
|
|
"scripts": {
|
2017-05-12 04:15:08 -04:00
|
|
|
"prebuild": "yarn clean-dist",
|
2018-08-27 05:41:11 -04:00
|
|
|
"build": "yarn ~~build",
|
|
|
|
"prebuild-watch": "yarn prebuild",
|
|
|
|
"build-watch": "yarn ~~build-watch",
|
2017-05-12 04:15:08 -04:00
|
|
|
"clean-dist": "node --eval \"require('shelljs').rm('-rf', 'dist')\"",
|
2018-08-27 09:30:39 -04:00
|
|
|
"predev": "yarn build || true",
|
2018-08-27 05:52:35 -04:00
|
|
|
"dev": "run-p ~~build-watch ~~test-watch",
|
2017-02-06 13:40:28 -05:00
|
|
|
"lint": "tslint --project tsconfig.json",
|
2020-05-02 09:14:13 -04:00
|
|
|
"pretest": "run-s build lint",
|
2017-05-12 04:15:08 -04:00
|
|
|
"test": "yarn ~~test-only",
|
2018-08-27 05:41:11 -04:00
|
|
|
"pretest-watch": "yarn pretest",
|
|
|
|
"test-watch": "yarn ~~test-watch",
|
|
|
|
"~~build": "tsc",
|
|
|
|
"~~build-watch": "yarn ~~build --watch",
|
|
|
|
"~~test-only": "node dist/test",
|
|
|
|
"~~test-watch": "nodemon --delay 1 --exec \"yarn ~~test-only\" --watch dist"
|
2017-02-06 13:40:28 -05:00
|
|
|
},
|
|
|
|
"dependencies": {
|
2020-05-02 09:14:05 -04:00
|
|
|
"body-parser": "^1.19.0",
|
|
|
|
"delete-empty": "^3.0.0",
|
|
|
|
"express": "^4.17.1",
|
2020-09-07 14:01:04 -04:00
|
|
|
"jasmine": "^3.6.1",
|
|
|
|
"nock": "^13.0.4",
|
|
|
|
"node-fetch": "^2.6.1",
|
2020-05-02 09:14:05 -04:00
|
|
|
"shelljs": "^0.8.4",
|
|
|
|
"source-map-support": "^0.5.19",
|
2020-09-07 14:01:04 -04:00
|
|
|
"tar-stream": "^2.1.3",
|
2021-03-16 15:10:32 -04:00
|
|
|
"tslib": "^2.1.0"
|
2017-02-06 13:40:28 -05:00
|
|
|
},
|
|
|
|
"devDependencies": {
|
2020-05-02 09:14:05 -04:00
|
|
|
"@types/body-parser": "^1.19.0",
|
2020-09-07 14:01:04 -04:00
|
|
|
"@types/express": "^4.17.8",
|
|
|
|
"@types/jasmine": "^3.5.14",
|
2020-05-02 09:14:05 -04:00
|
|
|
"@types/nock": "^11.1.0",
|
2020-09-07 14:01:04 -04:00
|
|
|
"@types/node": "^14.6.4",
|
2020-05-02 09:14:05 -04:00
|
|
|
"@types/node-fetch": "^2.5.7",
|
2020-09-07 14:01:04 -04:00
|
|
|
"@types/shelljs": "^0.8.8",
|
|
|
|
"@types/supertest": "^2.0.10",
|
|
|
|
"nodemon": "^2.0.4",
|
2018-11-26 15:01:46 -05:00
|
|
|
"npm-run-all": "^4.1.5",
|
2020-05-02 09:14:05 -04:00
|
|
|
"supertest": "^4.0.2",
|
2020-09-07 14:01:04 -04:00
|
|
|
"tslint": "^6.1.3",
|
2018-08-27 06:31:38 -04:00
|
|
|
"tslint-jasmine-noSkipOrFocus": "^1.0.9",
|
2021-04-14 07:29:24 -04:00
|
|
|
"typescript": "^4.2.4"
|
2017-02-06 13:40:28 -05:00
|
|
|
}
|
|
|
|
}
|