From b364c5714ed9fc0ce4af1b47b9ae3f4bb3943d07 Mon Sep 17 00:00:00 2001 From: Nikita Kobzev Date: Mon, 16 Jan 2017 08:00:03 +0300 Subject: [PATCH] Added the package.json file so the package would be recognized by NPM --- package.json | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 package.json diff --git a/package.json b/package.json new file mode 100644 index 0000000..6e2b107 --- /dev/null +++ b/package.json @@ -0,0 +1,25 @@ +{ + "name": "cpp.js", + "version": "1.0.0", + "description": "node.js-compatible implementation of the C Preprocessor (cpp) in Javascript", + "main": "cpp.js", + "files": [ + "cpp.js" + ], + "repository": { + "type": "git", + "url": "git+https://github.com/acgessler/cpp.js.git" + }, + "keywords": [ + "cpp", + "c++", + "preprocessor", + "cpp.js" + ], + "author": "Alexander Gessler (https://github.com/acgessler)", + "license": "SEE LICENSE IN LICENSE", + "bugs": { + "url": "https://github.com/acgessler/cpp.js/issues" + }, + "homepage": "https://github.com/acgessler/cpp.js#readme" +} \ No newline at end of file