Files
n8n-nodes-strike/node_modules/remove-bom-stream/package.json
Martien 5605b9b49a Initial commit: n8n Strike API node
- Add Strike API credentials configuration
- Implement Strike node with 9 resources (Account, Balance, Currency Exchange, Deposit, Invoice, Payment, Payment Method, Payout, Rates)
- Add comprehensive operation descriptions for all resources
- Include CLAUDE.MD documentation
- Set up build configuration with TypeScript, ESLint, and Prettier

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude <noreply@anthropic.com>
2025-12-10 11:00:38 +01:00

52 lines
1.2 KiB
JSON

{
"name": "remove-bom-stream",
"version": "1.2.0",
"description": "Remove a UTF8 BOM at the start of the stream.",
"author": "Gulp Team <team@gulpjs.com> (http://gulpjs.com/)",
"contributors": [
"Blaine Bublitz <blaine.bublitz@gmail.com>"
],
"repository": "gulpjs/remove-bom-stream",
"license": "MIT",
"engines": {
"node": ">= 0.10"
},
"main": "index.js",
"files": [
"LICENSE",
"index.js"
],
"scripts": {
"lint": "eslint index.js test/ && jscs index.js test/",
"pretest": "npm run lint",
"test": "mocha --async-only",
"cover": "istanbul cover _mocha",
"coveralls": "npm run cover && istanbul-coveralls"
},
"dependencies": {
"safe-buffer": "^5.1.0",
"remove-bom-buffer": "^3.0.0",
"through2": "^2.0.3"
},
"devDependencies": {
"buffer-equal": "^1.0.0",
"eslint": "^1.10.3",
"eslint-config-gulp": "^2.0.0",
"expect": "^1.20.2",
"istanbul": "^0.4.3",
"istanbul-coveralls": "^1.0.3",
"jscs": "^2.4.0",
"jscs-preset-gulp": "^1.0.0",
"mississippi": "^1.3.0",
"mocha": "^3.2.0",
"stream-chunker": "^1.2.8"
},
"keywords": [
"bom",
"remove",
"utf8",
"streaming",
"stream"
]
}