From bacedcf473820ff5908aee6a0ccda36a8d256dc4 Mon Sep 17 00:00:00 2001 From: Chris Bracco Date: Mon, 1 Feb 2016 10:16:03 -0500 Subject: [PATCH] Add package.json file Add a package.json file so people can pull this into their projects as a 3rd party library via npm. --- package.json | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 package.json diff --git a/package.json b/package.json new file mode 100644 index 0000000..35e8c87 --- /dev/null +++ b/package.json @@ -0,0 +1,24 @@ +{ + "name": "html5-test-page", + "version": "0.6.0", + "description": "A page filled with common HTML elements to be used for testing purposes.", + "main": "index.html", + "scripts": { + "test": "echo \"Error: no test specified\" && exit 1" + }, + "repository": { + "type": "git", + "url": "git+https://github.com/cbracco/html5-test-page.git" + }, + "keywords": [ + "HTML5", + "test", + "page" + ], + "author": "Chris Bracco", + "license": "MIT", + "bugs": { + "url": "https://github.com/cbracco/html5-test-page/issues" + }, + "homepage": "https://github.com/cbracco/html5-test-page#readme" +}