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",
|
2017-02-06 13:40:28 -05:00
|
|
|
"build": "tsc",
|
2018-06-08 05:56:01 -04:00
|
|
|
"build-watch": "yarn build --watch",
|
2017-05-12 04:15:08 -04:00
|
|
|
"clean-dist": "node --eval \"require('shelljs').rm('-rf', 'dist')\"",
|
|
|
|
"dev": "concurrently --kill-others --raw --success first \"yarn build-watch\" \"yarn test-watch\"",
|
2017-02-06 13:40:28 -05:00
|
|
|
"lint": "tslint --project tsconfig.json",
|
2017-05-12 04:15:08 -04:00
|
|
|
"pre~~test-only": "yarn lint",
|
2017-03-01 08:18:51 -05:00
|
|
|
"~~test-only": "node dist/test",
|
2017-05-12 04:15:08 -04:00
|
|
|
"pretest": "yarn build",
|
|
|
|
"test": "yarn ~~test-only",
|
|
|
|
"pretest-watch": "yarn build",
|
|
|
|
"test-watch": "nodemon --exec \"yarn ~~test-only\" --watch dist"
|
2017-02-06 13:40:28 -05:00
|
|
|
},
|
|
|
|
"dependencies": {
|
2017-09-23 08:24:04 -04:00
|
|
|
"body-parser": "^1.18.2",
|
2018-05-10 08:56:07 -04:00
|
|
|
"delete-empty": "^2.0.0",
|
2017-09-23 08:24:04 -04:00
|
|
|
"express": "^4.15.4",
|
|
|
|
"jasmine": "^2.8.0",
|
2018-05-10 08:56:07 -04:00
|
|
|
"nock": "^9.2.5",
|
|
|
|
"node-fetch": "^2.1.2",
|
|
|
|
"shelljs": "^0.8.1",
|
|
|
|
"tar-stream": "^1.6.0",
|
2017-09-23 08:24:04 -04:00
|
|
|
"tslib": "^1.7.1"
|
2017-02-06 13:40:28 -05:00
|
|
|
},
|
|
|
|
"devDependencies": {
|
2017-09-23 08:24:04 -04:00
|
|
|
"@types/body-parser": "^1.16.5",
|
|
|
|
"@types/express": "^4.0.37",
|
|
|
|
"@types/jasmine": "^2.6.0",
|
2018-05-10 08:56:07 -04:00
|
|
|
"@types/nock": "^9.1.3",
|
2017-09-23 08:24:04 -04:00
|
|
|
"@types/node": "^8.0.30",
|
2018-05-10 08:56:07 -04:00
|
|
|
"@types/node-fetch": "^1.6.8",
|
2018-06-08 05:55:15 -04:00
|
|
|
"@types/shelljs": "^0.8.0",
|
2017-09-23 08:24:04 -04:00
|
|
|
"@types/supertest": "^2.0.3",
|
|
|
|
"concurrently": "^3.5.0",
|
|
|
|
"nodemon": "^1.12.1",
|
2017-02-06 13:40:28 -05:00
|
|
|
"supertest": "^3.0.0",
|
2017-09-23 08:24:04 -04:00
|
|
|
"tslint": "^5.7.0",
|
|
|
|
"tslint-jasmine-noSkipOrFocus": "^1.0.8",
|
|
|
|
"typescript": "^2.5.2"
|
2017-02-06 13:40:28 -05:00
|
|
|
}
|
|
|
|
}
|