@olavarriaga/n8n-nodes-myfitnesspal
Version:
MyFitnessPal integration node for n8n
77 lines • 2.11 kB
JSON
{
"name": "@olavarriaga/n8n-nodes-myfitnesspal",
"version": "1.0.0",
"description": "MyFitnessPal integration node for n8n",
"keywords": [
"n8n-node",
"n8n-community-node-package",
"myfitnesspal",
"health",
"fitness",
"nutrition",
"diet",
"exercise"
],
"license": "MIT",
"homepage": "https://github.com/olavarriaga/n8n-nodes-myfitnesspal",
"author": {
"name": "Manuel Olavarriaga",
"email": "olavarriagam@gmail.com",
"url": "https://github.com/olavarriaga"
},
"repository": {
"type": "git",
"url": "git+https://github.com/olavarriaga/n8n-nodes-myfitnesspal.git"
},
"main": "index.js",
"scripts": {
"build": "tsc && gulp build:icons",
"dev": "tsc --watch",
"format": "prettier nodes credentials --write",
"lint": "eslint nodes credentials package.json",
"lintfix": "eslint nodes credentials package.json --fix",
"prepublishOnly": "npm run build && npm run lint -c .eslintrc.prepublish.js nodes credentials package.json",
"test": "jest"
},
"files": [
"dist"
],
"n8n": {
"n8nNodesApiVersion": 1,
"credentials": [
"dist/credentials/MyFitnessPalApi.credentials.js"
],
"nodes": [
"dist/nodes/Health/Health.node.js"
]
},
"dependencies": {
"n8n-core": "^1.0.0",
"n8n-workflow": "^1.0.0"
},
"devDependencies": {
"@types/express": "^4.17.17",
"@types/jest": "^29.5.0",
"@types/request-promise-native": "~1.0.18",
"@typescript-eslint/eslint-plugin": "^5.45.0",
"@typescript-eslint/parser": "^5.45.0",
"eslint": "^8.28.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-n8n-nodes-base": "^1.11.0",
"gulp": "^4.0.2",
"jest": "^29.5.0",
"prettier": "^2.7.1",
"ts-jest": "^29.1.0",
"typescript": "~4.8.4"
},
"jest": {
"preset": "ts-jest",
"testEnvironment": "node",
"testRegex": "/__tests__/.*\\.test\\.ts$",
"moduleFileExtensions": [
"ts",
"js"
]
}
}