From 9f2ba1d83a55cd77e894ed12459ee0c91dc9feb9 Mon Sep 17 00:00:00 2001 From: Doan Truong Thi Date: Sat, 8 Nov 2014 01:31:51 +0900 Subject: [PATCH 1/3] Add component.json --- .gitignore | 1 + component.json | 25 +++++++++++++++++++++++++ 2 files changed, 26 insertions(+) create mode 100644 component.json diff --git a/.gitignore b/.gitignore index 646ac519..56997d77 100644 --- a/.gitignore +++ b/.gitignore @@ -1,2 +1,3 @@ .DS_Store node_modules/ +build diff --git a/component.json b/component.json new file mode 100644 index 00000000..36c99c7e --- /dev/null +++ b/component.json @@ -0,0 +1,25 @@ +{ + "version": "1.0.1", + "name": "twemoji", + "license": ["MIT", "CC-BY-4.0"], + "description": "A Unicode standard based way to implement emoji across all platforms.", + "homepage": "https://github.com/twitter/twemoji", + "keywords": [ + "emoji", + "DOM", + "parser", + "images", + "retina", + "Twitter", + "unicode" + ], + "author": { + "name": "Twitter, Inc.", + "web": "https://github.com/twitter/" + }, + "repository": "twitter/twemoji", + "main": "twemoji.js", + "scripts": [ + "twemoji.js" + ] +} From 193671788b89c6925cc11358270e32c778c1dcda Mon Sep 17 00:00:00 2001 From: Doan Truong Thi Date: Sat, 8 Nov 2014 09:13:06 +0900 Subject: [PATCH 2/3] Add component.json as file to ignore to .npmignore and bower.json --- .npmignore | 1 + bower.json | 1 + 2 files changed, 2 insertions(+) diff --git a/.npmignore b/.npmignore index 21b2336c..d4f9ee22 100644 --- a/.npmignore +++ b/.npmignore @@ -5,6 +5,7 @@ 72x72 assets bower.json +component.json index.html node_modules preview-* diff --git a/bower.json b/bower.json index 7c27c78f..fc63d8a0 100644 --- a/bower.json +++ b/bower.json @@ -11,6 +11,7 @@ "./36x36", "./72x72", "./assets", + "./component.json", "./node_modules", "./index.html", "./package.json", From f4c8d33349855d58c9dacb06a9598e59ffc79fa4 Mon Sep 17 00:00:00 2001 From: Doan Truong Thi Date: Sat, 8 Nov 2014 09:14:27 +0900 Subject: [PATCH 3/3] Add component's build directory as file to ignore --- .npmignore | 1 + bower.json | 1 + 2 files changed, 2 insertions(+) diff --git a/.npmignore b/.npmignore index d4f9ee22..e45fee24 100644 --- a/.npmignore +++ b/.npmignore @@ -5,6 +5,7 @@ 72x72 assets bower.json +build component.json index.html node_modules diff --git a/bower.json b/bower.json index fc63d8a0..119ddd05 100644 --- a/bower.json +++ b/bower.json @@ -11,6 +11,7 @@ "./36x36", "./72x72", "./assets", + "./build", "./component.json", "./node_modules", "./index.html",