mirror of
https://github.com/formbricks/formbricks.git
synced 2026-03-14 11:10:45 -05:00
* add pre-commit hook for linting & formatting * add husky * update n8n package json, update package-lock file
55 lines
1.4 KiB
JSON
55 lines
1.4 KiB
JSON
{
|
|
"name": "@formbricks/n8n-nodes-formbricks",
|
|
"version": "0.2.0",
|
|
"description": "A n8n node to connect Formbricks and send survey data to hundreds of other apps.",
|
|
"keywords": [
|
|
"n8n-community-node-package",
|
|
"n8n",
|
|
"trigger",
|
|
"Formbricks",
|
|
"n8n-node",
|
|
"surveys",
|
|
"experience management"
|
|
],
|
|
"license": "MIT",
|
|
"homepage": "https://formbricks.com",
|
|
"author": {
|
|
"name": "PratikAwaik",
|
|
"email": "pratikawaik125@gmail.com"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/formbricks/formbricks"
|
|
},
|
|
"main": "index.js",
|
|
"scripts": {
|
|
"build": "tsc && gulp build:icons",
|
|
"clean": "rimraf .turbo node_modules dist",
|
|
"dev": "tsc --watch",
|
|
"format": "prettier nodes credentials --write",
|
|
"lint": "eslint nodes credentials package.json",
|
|
"lintfix": "eslint nodes credentials package.json --fix",
|
|
"prepublishOnly": "pnpm run build && pnpm run lint -c .eslintrc.prepublish.js nodes credentials package.json"
|
|
},
|
|
"files": [
|
|
"dist"
|
|
],
|
|
"n8n": {
|
|
"n8nNodesApiVersion": 1,
|
|
"credentials": [
|
|
"dist/credentials/FormbricksApi.credentials.js"
|
|
],
|
|
"nodes": [
|
|
"dist/nodes/Formbricks/Formbricks.node.js"
|
|
]
|
|
},
|
|
"devDependencies": {
|
|
"@types/request-promise-native": "~1.0.15",
|
|
"@typescript-eslint/parser": "~5.45",
|
|
"eslint-plugin-n8n-nodes-base": "^1.11.0",
|
|
"gulp": "^4.0.2",
|
|
"n8n-core": "^1.1.1",
|
|
"n8n-workflow": "^1.1.1"
|
|
}
|
|
}
|