{
  "name": "@specs-feup/clava-misra",
  "version": "1.0.4",
  "author": "Milena Gouveia",
  "description": "Clava library to automatically detect and correct violations of the MISRA-C:2012 standard in C code",
  "type": "module",
  "exports": {
    "./*": {
      "types": "./dist/*.d.ts",
      "default": "./dist/*.js"
    }
  },
  "files": [
    "dist",
    "src",
    "jest.config.js",
    ".gitignore",
    "package.json",
    "README.md",
    "tsconfig.jest.json",
    "tsconfig.json",
    "typedoc.config.js"
  ],
  "scripts": {
    "run": "cross-env-shell \"if [ $(uname) = 'Darwin' ] || [ $(uname) = 'Linux' ]; then npm run run:macos-linux; else npm run run:windows; fi\"",
    "run:windows": "cross-env STD_VERSION=%npm_config_std% npx clava classic dist/main.js -pi -std %npm_config_std% -p CxxSources/",
    "run:macos-linux": "cross-env STD_VERSION=$npm_config_std npx clava classic dist/main.js -pi -std $npm_config_std -p CxxSources/",
    "build": "tsc",
    "build:watch": "tsc --watch",
    "lint": "eslint .",
    "docs": "typedoc",
    "test": "npm run test:c90 && npm run test:c99 && npm run test:c11",
    "test:c90": "cross-env STD_VERSION=c90 NODE_OPTIONS=\"$NODE_OPTIONS --experimental-vm-modules\" jest --detectOpenHandles --forceExit src --std=c90",
    "test:c99": "cross-env STD_VERSION=c99 NODE_OPTIONS=\"$NODE_OPTIONS --experimental-vm-modules\" jest --detectOpenHandles --forceExit src --std=c99",
    "test:c11": "cross-env STD_VERSION=c11 NODE_OPTIONS=\"$NODE_OPTIONS --experimental-vm-modules\" jest --detectOpenHandles --forceExit src --std=c11",
    "test:cov": "npm run test -- --coverage",
    "test:watch": "npm run test -- --watch"
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/specs-feup/clava-misra.git"
  },
  "dependencies": {
    "@specs-feup/clava": "3.0.26",
    "@specs-feup/lara": "^3.0.11",
    "@specs-feup/clava-flow": "^1.0.1",
    "@specs-feup/flow": "^1.0.3"
  },
  "devDependencies": {
    "@jest/globals": "^29.7.0",
    "@specs-feup/clava": "3.0.26",
    "@specs-feup/lara": "^3.0.11",
    "@specs-feup/clava-flow": "^1.0.1",
    "@specs-feup/flow": "^1.0.3",
    "@types/jest": "^29.5.14",
    "@typescript-eslint/eslint-plugin": "^7.16.0",
    "@typescript-eslint/parser": "^7.16.0",
    "cross-env": "^7.0.3",
    "eslint": "^8.57.0",
    "eslint-config-prettier": "^9.1.0",
    "eslint-plugin-jest": "^28.6.0",
    "eslint-plugin-tsdoc": "^0.2.17",
    "jest": "^29.7.0",
    "ts-jest": "^29.2.5",
    "typedoc": "^0.26.4",
    "typescript": "^5.5.3"
  }
}
