From 46481209040f85e9c76ff5cc9186335aedf66198 Mon Sep 17 00:00:00 2001 From: Harrison Shoff Date: Tue, 5 Aug 2014 16:27:06 -0700 Subject: [PATCH 1/2] [npm] add package.json --- index.js | 0 package.json | 24 ++++++++++++++++++++++++ 2 files changed, 24 insertions(+) create mode 100644 index.js create mode 100644 package.json diff --git a/index.js b/index.js new file mode 100644 index 00000000..e69de29b diff --git a/package.json b/package.json new file mode 100644 index 00000000..0643a328 --- /dev/null +++ b/package.json @@ -0,0 +1,24 @@ +{ + "name": "airbnb-style", + "version": "1.0.0", + "description": "A mostly reasonable approach to JavaScript.", + "main": "index.js", + "scripts": { + "test": "echo \"Error: no test specified\" && exit 1" + }, + "repository": { + "type": "git", + "url": "https://github.com/airbnb/javascript.git" + }, + "keywords": [ + "style guide", + "lint", + "airbnb" + ], + "author": "Harrison Shoff (https://twitter.com/hshoff)", + "license": "MIT", + "bugs": { + "url": "https://github.com/airbnb/javascript/issues" + }, + "homepage": "https://github.com/airbnb/javascript" +} From 9f535bd724fe01ffea9fbabb65a3053f3bf98e2f Mon Sep 17 00:00:00 2001 From: Harrison Shoff Date: Tue, 5 Aug 2014 16:48:54 -0700 Subject: [PATCH 2/2] [npm] remove main, index.js --- index.js | 0 package.json | 1 - 2 files changed, 1 deletion(-) delete mode 100644 index.js diff --git a/index.js b/index.js deleted file mode 100644 index e69de29b..00000000 diff --git a/package.json b/package.json index 0643a328..2fe47fb2 100644 --- a/package.json +++ b/package.json @@ -2,7 +2,6 @@ "name": "airbnb-style", "version": "1.0.0", "description": "A mostly reasonable approach to JavaScript.", - "main": "index.js", "scripts": { "test": "echo \"Error: no test specified\" && exit 1" },