Skip to content
Snippets Groups Projects
package.json 980 B
Newer Older
  • Learn to ignore specific revisions
  • Zdravko Iliev's avatar
    Zdravko Iliev committed
    {
      "name": "@vereign/lib-pdf",
      "author": "Veriegn AG",
      "description": "Vereign PDF parser library",
      "version": "1.0.0",
      "license": "MIT",
      "main": "./dist/index.js",
      "types": "./dist/index.d.ts",
      "devDependencies": {
        "@babel/core": "^7.11.4",
        "@babel/preset-env": "^7.11.0",
        "@babel/preset-typescript": "^7.10.4",
        "@typescript-eslint/eslint-plugin": "^3.10.1",
        "@typescript-eslint/parser": "^3.10.1",
        "babel-eslint": "^10.1.0",
        "babel-jest": "^26.3.0",
        "eslint": "^7.7.0",
        "eslint-config-prettier": "^8.3.0",
        "eslint-plugin-prettier": "^3.4.0",
        "husky": "^4.2.5",
        "jest": "^26.4.2",
        "lint-staged": "^10.2.13",
        "prettier": "^2.1.1",
        "typescript": "^4.0.2"
      },
      "scripts": {
        "start": "tsc --watch",
        "build": "tsc",
        "test": "jest",
        "test:watch": "jest --watch",
        "eslint": "eslint src/"
      },
      "husky": {
        "hooks": {
          "pre-commit": "lint-staged"
        }
      },
      "dependencies": {}
    }