cpp-merge
Version:
Command line tool to produce single source file from multiple C/C++ files
53 lines (52 loc) • 1.23 kB
JSON
{
"name": "cpp-merge",
"version": "0.4.1",
"description": "Command line tool to produce single source file from multiple C/C++ files",
"repository": {
"type": "git",
"url": "git@github.com:RandomVoid/cpp-merge.git"
},
"homepage": "https://github.com/RandomVoid/cpp-merge",
"author": "RandomVoid (https://github.com/RandomVoid)",
"license": "MIT",
"files": [
"lib/**/*.js",
"lib/**/*.d.ts"
],
"main": "lib/cli.js",
"types": "lib/cli.d.ts",
"engines": {
"node": ">=14"
},
"scripts": {
"build": "tsc",
"lint": "eslint . --ext .ts",
"test": "jest --coverage --coverageReporters=text",
"prepublishOnly": "yarn build && chmod +x lib/cli.js && yarn lint && yarn test"
},
"bin": {
"cpp-merge": "lib/cli.js"
},
"dependencies": {},
"devDependencies": {
"@tsconfig/node10": "^1.0.8",
"@types/jest": "^27.0.1",
"@types/node": "^16.9.2",
"@typescript-eslint/eslint-plugin": "^4.31.1",
"@typescript-eslint/parser": "^4.31.1",
"eslint": "^7.32.0",
"jest": "^27.2.0",
"ts-jest": "^27.0.5",
"typescript": "^4.4.3"
},
"keywords": [
"c",
"c++",
"cpp",
"file",
"hpp",
"merge",
"single",
"source"
]
}