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",
|
2017-05-12 04:15:08 -04:00
|
|
|
"build-watch": "yarn tsc -- --watch",
|
|
|
|
"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": {
|
|
|
|
"express": "^4.14.1",
|
|
|
|
"jasmine": "^2.5.3",
|
2017-02-28 14:02:56 -05:00
|
|
|
"jsonwebtoken": "^7.3.0",
|
2017-02-06 13:40:28 -05:00
|
|
|
"shelljs": "^0.7.6"
|
|
|
|
},
|
|
|
|
"devDependencies": {
|
|
|
|
"@types/express": "^4.0.35",
|
|
|
|
"@types/jasmine": "^2.5.43",
|
2017-02-28 14:02:56 -05:00
|
|
|
"@types/jsonwebtoken": "^7.2.0",
|
2017-02-06 13:40:28 -05:00
|
|
|
"@types/node": "^7.0.5",
|
|
|
|
"@types/shelljs": "^0.7.0",
|
|
|
|
"@types/supertest": "^2.0.0",
|
|
|
|
"concurrently": "^3.3.0",
|
|
|
|
"eslint": "^3.15.0",
|
|
|
|
"eslint-plugin-jasmine": "^2.2.0",
|
|
|
|
"nodemon": "^1.11.0",
|
|
|
|
"supertest": "^3.0.0",
|
|
|
|
"tslint": "^4.4.2",
|
|
|
|
"typescript": "^2.1.6"
|
|
|
|
}
|
|
|
|
}
|