UNPKG

gatsby-drupal-webform

Version:
106 lines (105 loc) 2.78 kB
{ "name": "gatsby-drupal-webform", "version": "4.0.0", "description": "React component for Drupal webforms", "author": "Santeri Hurnanen <santeri@oikeuttaelaimille.fi>", "license": "MIT", "main": "dist/index.js", "typings": "dist/index.d.ts", "files": [ "dist" ], "scripts": { "test": "jest", "build": "npm run build:lib && npm run build:types", "lint": "eslint '*/**/*.{js,json,ts,tsx}' --quiet --fix", "build:lib": "tsc", "build:types": "tsc --declaration --emitDeclarationOnly", "build:watch": "tsc --declaration --watch", "commit": "git-cz" }, "keywords": [ "gatsby", "gatsby-component", "react-component", "drupal" ], "repository": { "type": "git", "url": "git+https://github.com/oikeuttaelaimille/gatsby-drupal-webform.git" }, "bugs": { "url": "https://github.com/oikeuttaelaimille/gatsby-drupal-webform/issues" }, "homepage": "https://github.com/oikeuttaelaimille/gatsby-drupal-webform#readme", "peerDependencies": { "axios": ">= 0.19.0" }, "dependencies": {}, "devDependencies": { "@commitlint/cli": "^11.0.0", "@commitlint/config-conventional": "^12.0.0", "@semantic-release/changelog": "^5.0.0", "@semantic-release/git": "^9.0.0", "@testing-library/react": "^11.0.4", "@typescript-eslint/eslint-plugin": "^2.22.0", "@typescript-eslint/parser": "^2.22.0", "axios": "^0.21.1", "babel-jest": "^26.3.0", "babel-preset-gatsby": "^0.5.5", "commitizen": "^4.0.3", "cz-conventional-changelog": "^3.1.0", "eslint-config-prettier": "^6.10.0", "eslint-plugin-prettier": "^3.1.2", "eslint-plugin-react": "^7.18.3", "gatsby": "^2.19.28", "husky": "^4.2.3", "jest": "^26.3.0", "lint-staged": "^10.0.8", "prettier": "^2.0.5", "react": "^16.13.0", "react-dom": "^16.13.0", "semantic-release": "^17.0.4", "ts-jest": "^26.1.4", "typescript": "^3.8.3" }, "husky": { "hooks": { "pre-commit": "lint-staged", "commit-msg": "commitlint -E HUSKY_GIT_PARAMS" } }, "commitlint": { "extends": [ "@commitlint/config-conventional" ] }, "lint-staged": { "src/**/*.ts{x,}": [ "eslint ./src --fix" ] }, "config": { "commitizen": { "path": "node_modules/cz-conventional-changelog" } }, "release": { "plugins": [ "@semantic-release/commit-analyzer", "@semantic-release/release-notes-generator", "@semantic-release/changelog", "@semantic-release/npm", "@semantic-release/github", "@semantic-release/git" ] }, "prettier": { "semi": false, "tabWidth": 2, "useTabs": true, "printWidth": 140, "singleQuote": true, "trailingComma": "none" } }