n8n-nodes-starter/package.json
Valentina Lilova a11487479a Add keywords
2022-05-31 19:24:42 +03:00

84 lines
2 KiB
JSON

{
"name": "@digital-boss/n8n-nodes-starter",
"version": "0.1.0",
"description": "FriendGrid support for n8n.",
"license": "SEE LICENSE IN LICENSE.md",
"homepage": "https://n8n.io",
"author": {
"name": "Valentina Lilova",
"email": "valentina.lilova@digital-boss.de"
},
"repository": {
"type": "git",
"url": "git+https://github.com/digital-boss/n8n-nodes-starter.git"
},
"keywords": [
"n8n",
"nodemation",
"dnc",
"digital north consulting",
"digital boss",
"nodes",
"custom",
"workflow",
"customer service"
],
"main": "index.js",
"scripts": {
"dev": "npm run watch",
"build": "genversion -s -e nodes/version.ts && git add . && tsc && gulp",
"lint": "tslint -p tsconfig.json -c tslint.json",
"lintfix": "tslint --fix -p tsconfig.json -c tslint.json",
"nodelinter": "nodelinter",
"watch": "tsc --watch",
"test": "jest",
"release": "npm run build && npm publish --access=public",
"version": "npm run build",
"postversion": "git push"
},
"files": [
"dist"
],
"n8n": {
"credentials": [
"dist/credentials/FriendGridApi.credentials.js"
],
"nodes": [
"dist/nodes/FriendGrid/FriendGrid.node.js"
]
},
"devDependencies": {
"@types/express": "^4.17.6",
"@types/jest": "^27.4.0",
"@types/node": "14.17.27",
"@types/request-promise-native": "~1.0.15",
"genversion": "^3.1.1",
"gulp": "^4.0.0",
"jest": "^27.4.7",
"n8n-workflow": "~0.98.0",
"nodelinter": "^0.1.9",
"ts-jest": "^27.1.3",
"tslint": "^6.1.2",
"typescript": "~4.6.0"
},
"dependencies": {
"n8n-core": "~0.116.0"
},
"jest": {
"transform": {
"^.+\\.tsx?$": "ts-jest"
},
"testURL": "http://localhost/",
"testRegex": "(/__tests__/.*|(\\.|/)(test|spec))\\.(jsx?|tsx?)$",
"testPathIgnorePatterns": [
"/dist/",
"/node_modules/"
],
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"json"
]
}
}