140 строки
3.5 KiB
JSON
140 строки
3.5 KiB
JSON
{
|
|
"name": "@azure/ng-deploy",
|
|
"version": "0.2.3",
|
|
"main": "out/ng-add/index.js",
|
|
"files": [
|
|
"out/",
|
|
"builders.json",
|
|
"collection.json"
|
|
],
|
|
"description": "@azure/ng-deploy - Deploy Angular apps to Azure using the Angular CLI",
|
|
"scripts": {
|
|
"commit": "git-cz",
|
|
"build": "tsc -p tsconfig.json && npm run copy:builders:json && npm run copy:ngadd:json && tsc -p tsconfig.json",
|
|
"start": "npm run build:watch",
|
|
"build:watch": "npm run build -s -- -w",
|
|
"format": "npm run format:check -s -- --write",
|
|
"format:check": "prettier -l \"./src/**/*.{json,ts}\"",
|
|
"test": "jest --verbose",
|
|
"test:jest": "jest",
|
|
"test:jest:watch": "jest --watch",
|
|
"test:e2e": "./scripts/test.sh",
|
|
"test:coverage": "jest --coverage",
|
|
"copy:builders:json": "cp ./src/builders/*.json ./out/builders",
|
|
"copy:ngadd:json": "cp ./src/ng-add/*.json ./out/ng-add"
|
|
},
|
|
"keywords": [
|
|
"schematics",
|
|
"angular",
|
|
"azure",
|
|
"deploy"
|
|
],
|
|
"author": {
|
|
"name": "Shmuela Jacobs",
|
|
"url": "https://twitter.com/ShmuelaJ"
|
|
},
|
|
"contributors": [
|
|
{
|
|
"name": "Shmuela Jacobs",
|
|
"url": "https://twitter.com/ShmuelaJ"
|
|
},
|
|
{
|
|
"name": "Chris Noring",
|
|
"url": "https://twitter.com/chris_noring"
|
|
},
|
|
{
|
|
"name": "Yohan Lasorsa",
|
|
"url": "https://twitter.com/sinedied"
|
|
},
|
|
{
|
|
"name": "Wassim Chegham",
|
|
"url": "https://twitter.com/manekinekko"
|
|
}
|
|
],
|
|
"homepage": "https://github.com/Azure/ng-deploy-azure/",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git@github.com:Azure/ng-deploy-azure.git"
|
|
},
|
|
"bugs": {
|
|
"url": "https://github.com/Azure/ng-deploy-azure/issues"
|
|
},
|
|
"engines": {
|
|
"node": ">=8"
|
|
},
|
|
"license": "MIT",
|
|
"builders": "./builders.json",
|
|
"schematics": "./collection.json",
|
|
"dependencies": {
|
|
"@angular-devkit/architect": "^0.801.2",
|
|
"@angular-devkit/core": "^8.0.1",
|
|
"@angular-devkit/schematics": "^8.0.1",
|
|
"@azure/arm-resources": "^1.0.0",
|
|
"@azure/arm-storage": "^7.0.0",
|
|
"@azure/ms-rest-azure-env": "^1.1.1",
|
|
"@azure/ms-rest-nodeauth": "^0.8.3",
|
|
"@azure/storage-blob": "^10.3.0",
|
|
"adal-node": "^0.1.28",
|
|
"chalk": "^2.4.2",
|
|
"conf": "^3.0.0",
|
|
"fuzzy": "^0.1.3",
|
|
"glob": "^7.1.3",
|
|
"inquirer": "^6.2.2",
|
|
"inquirer-autocomplete-prompt": "^1.0.1",
|
|
"mime-types": "^2.1.21",
|
|
"ora": "^3.4.0",
|
|
"progress": "^2.0.3",
|
|
"promise-limit": "^2.7.0",
|
|
"typescript": "~3.4.0"
|
|
},
|
|
"devDependencies": {
|
|
"@commitlint/cli": "^8.1.0",
|
|
"@commitlint/config-conventional": "^8.1.0",
|
|
"@schematics/angular": "^8.2.0",
|
|
"@types/conf": "^2.1.0",
|
|
"@types/glob": "^7.1.1",
|
|
"@types/inquirer": "0.0.44",
|
|
"@types/jest": "^24.0.13",
|
|
"@types/mime-types": "^2.1.0",
|
|
"@types/node": "^10.12.18",
|
|
"@types/progress": "^2.0.3",
|
|
"commitizen": "^4.0.3",
|
|
"cz-conventional-changelog": "^3.0.2",
|
|
"husky": "^3.0.2",
|
|
"jest": "^24.8.0",
|
|
"prettier": "^1.18.2",
|
|
"pretty-quick": "^1.11.1",
|
|
"schematics-utilities": "^1.1.2",
|
|
"ts-jest": "^24.0.2",
|
|
"typescript": "~3.4.0"
|
|
},
|
|
"jest": {
|
|
"roots": [
|
|
"<rootDir>/src"
|
|
],
|
|
"transform": {
|
|
"^.+\\.tsx?$": "ts-jest"
|
|
}
|
|
},
|
|
"prettier": {
|
|
"singleQuote": true,
|
|
"printWidth": 120
|
|
},
|
|
"husky": {
|
|
"hooks": {
|
|
"pre-commit": "pretty-quick --staged",
|
|
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
|
|
}
|
|
},
|
|
"commitlint": {
|
|
"extends": [
|
|
"@commitlint/config-conventional"
|
|
]
|
|
},
|
|
"config": {
|
|
"commitizen": {
|
|
"path": "cz-conventional-changelog"
|
|
}
|
|
}
|
|
}
|