From c6f61ac4ca56368f155fb153f404fe64ef49151d Mon Sep 17 00:00:00 2001 From: Amanpreet Singh Date: Sun, 26 Apr 2015 12:37:00 +0530 Subject: [PATCH] Add gitignore, test.js --- .gitignore | 1 + package.json | 58 +++++++++++++++++++++++++++------------------------ tests/test.js | 0 3 files changed, 32 insertions(+), 27 deletions(-) create mode 100644 .gitignore create mode 100644 tests/test.js diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..3c3629e --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +node_modules diff --git a/package.json b/package.json index 9e45618..2da995c 100644 --- a/package.json +++ b/package.json @@ -1,29 +1,33 @@ { - "name": "ctf-tools", - "title": "CTF Tools", - "description": "A curated list of CTF frameworks, libraries, resources and softwares.", - "version": "1.0.0", - "homepage": "http://github.com/apsdehal/ctf-tool", - "author": { - "name": "Amanpreet Singh and contributors", - "url": "https://github.com/apsdehal/ctf-tools/graphs/contributors" - }, - "repository": { - "type": "git", - "url": "https://github.com/apsdehal/ctf-tools.git" - }, - "bugs": "https://github.com/apsdehal/ctf-tools/issues", - "licenses": [ - { - "type": "MIT", - "url": "https://github.com/apsdehal/ctf-tools/LICENSE.txt" - } - ], - "engines": { - "node": ">= 0.8.0" - }, - "scripts": { - "test": "node test.js", - }, - "keywords": [] + "name": "ctf-tools", + "title": "CTF Tools", + "description": "A curated list of CTF frameworks, libraries, resources and softwares.", + "version": "1.0.0", + "homepage": "http://github.com/apsdehal/ctf-tools", + "author": { + "name": "Amanpreet Singh and contributors", + "url": "https://github.com/apsdehal/ctf-tools/graphs/contributors" + }, + "repository": { + "type": "git", + "url": "https://github.com/apsdehal/ctf-tools.git" + }, + "bugs": "https://github.com/apsdehal/ctf-tools/issues", + "devDependencies": { + "mocha": "~2.2.1", + "marked": "^0.3.3" + }, + "licenses": [ + { + "type": "MIT", + "url": "https://github.com/apsdehal/ctf-tools/LICENSE.txt" + } + ], + "engines": { + "node": ">= 0.8.0" + }, + "scripts": { + "test": "node test.js" + }, + "keywords": [], } diff --git a/tests/test.js b/tests/test.js new file mode 100644 index 0000000..e69de29