123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596 |
- {
- "name": "@sfcraft/allure",
- "description": "SFDX plugin to generate Allure reports",
- "version": "0.1.0",
- "author": "Nikita Chursin @nchursin",
- "bugs": "https://github.com/nchursin/sfdx-allure/issues",
- "dependencies": {
- "@oclif/command": "^1",
- "@oclif/config": "^1",
- "@oclif/errors": "^1",
- "@salesforce/command": "^2",
- "@salesforce/core": "^2",
- "@salesforce/plugin-apex": "^0.1.21",
- "@types/rimraf": "^3.0.0",
- "@types/sinon-chai": "^3.2.5",
- "node-run-cmd": "^1.0.1",
- "rimraf": "^3.0.2",
- "sinon-chai": "^3.6.0",
- "tslib": "^1"
- },
- "devDependencies": {
- "@oclif/dev-cli": "^1",
- "@oclif/plugin-help": "^2",
- "@oclif/test": "^1",
- "@salesforce/dev-config": "1.4.1",
- "@types/chai": "^4",
- "@types/chai-as-promised": "^7.1.3",
- "@types/jest": "^26.0.22",
- "@types/node": "^10",
- "@types/sinon": "^10.0.0",
- "chai": "^4",
- "chai-as-promised": "^7.1.1",
- "globby": "^8",
- "jest": "^26.6.3",
- "nyc": "^14",
- "sinon": "^10.0.0",
- "ts-jest": "^26.5.5",
- "ts-node": "^8",
- "tslint": "^5"
- },
- "engines": {
- "node": ">=8.0.0"
- },
- "files": [
- "/lib",
- "/messages",
- "/npm-shrinkwrap.json",
- "/oclif.manifest.json"
- ],
- "homepage": "https://github.com/nchursin/sfdx-allure",
- "keywords": [
- "sfdx-plugin"
- ],
- "license": "MIT",
- "oclif": {
- "commands": "./lib/commands",
- "bin": "sfdx",
- "topics": {
- "sfcraft": {
- "external": true,
- "subtopics": {
- "allure": {
- "description": "Create Allure reports",
- "longDescription": "Commands to create Allure reports from Salesforce test reports",
- "subtopics": {
- "apex": {
- "subtopics": {
- "report": {
- "description": "Generate allure report from Apex test run"
- }
- }
- }
- }
- }
- }
- }
- },
- "devPlugins": [
- "@oclif/plugin-help"
- ]
- },
- "repository": "https://github.com/nchursin/sfdx-allure",
- "scripts": {
- "lint": "tslint --project . --config tslint.json --format stylish",
- "postpack": "rm -f oclif.manifest.json",
- "posttest": "tslint -p test -t stylish",
- "prepack": "yarn compile && oclif-dev manifest && oclif-dev readme",
- "compile": "rm -rf lib && tsc -b",
- "test": "yarn jest",
- "version": "oclif-dev readme && git add README.md",
- "debug": "NODE_OPTIONS=--inspect-brk bin/run",
- "predebug": "yarn compile",
- "preversion": "yarn test"
- }
- }
|