Comparing version 3.1.1 to 3.1.2
{ | ||
"name": "emoticon", | ||
"version": "3.1.1", | ||
"version": "3.1.2", | ||
"description": "Info on ASCII emoticons", | ||
@@ -17,5 +17,5 @@ "license": "MIT", | ||
"bugs": "https://github.com/wooorm/emoticon/issues", | ||
"author": "Titus Wormer <tituswormer@gmail.com> (http://wooorm.com)", | ||
"author": "Titus Wormer <tituswormer@gmail.com> (https://wooorm.com)", | ||
"contributors": [ | ||
"Titus Wormer <tituswormer@gmail.com> (http://wooorm.com)" | ||
"Titus Wormer <tituswormer@gmail.com> (https://wooorm.com)" | ||
], | ||
@@ -28,17 +28,17 @@ "main": "index.json", | ||
"browserify": "^16.0.0", | ||
"esmangle": "^1.0.0", | ||
"gemoji": "^4.0.0", | ||
"markdown-table": "^1.0.0", | ||
"remark-cli": "^5.0.0", | ||
"remark-cli": "^6.0.0", | ||
"remark-lint-table-pipe-alignment": "^1.0.0", | ||
"remark-preset-wooorm": "^4.0.0", | ||
"tape": "^4.6.0", | ||
"xo": "^0.20.0" | ||
"tinyify": "^2.5.0", | ||
"xo": "^0.24.0" | ||
}, | ||
"scripts": { | ||
"generate": "node script/build-data", | ||
"format": "remark . -qfo && prettier --write '**/*.js' && xo --fix", | ||
"format": "remark . -qfo && prettier --write \"**/*.js\" && xo --fix", | ||
"build-support": "node script/build-support", | ||
"build-bundle": "browserify index.json --bare -s emoticon > emoticon.js", | ||
"build-mangle": "esmangle emoticon.js > emoticon.min.js", | ||
"build-bundle": "browserify index.json -s emoticon -o emoticon.js", | ||
"build-mangle": "browserify index.json -s emoticon -p tinyify -o emoticon.min.js", | ||
"build": "npm run build-support && npm run build-bundle && npm run build-mangle", | ||
@@ -48,14 +48,2 @@ "test-api": "node test", | ||
}, | ||
"remarkConfig": { | ||
"settings": { | ||
"paddedTable": false | ||
}, | ||
"plugins": [ | ||
"preset-wooorm", | ||
[ | ||
"lint-table-pipe-alignment", | ||
false | ||
] | ||
] | ||
}, | ||
"prettier": { | ||
@@ -72,10 +60,18 @@ "tabWidth": 2, | ||
"esnext": false, | ||
"rules": { | ||
"no-var": "off", | ||
"prefer-arrow-callback": "off" | ||
}, | ||
"ignore": [ | ||
"emotion.js" | ||
] | ||
}, | ||
"remarkConfig": { | ||
"settings": { | ||
"paddedTable": false | ||
}, | ||
"plugins": [ | ||
"preset-wooorm", | ||
[ | ||
"lint-table-pipe-alignment", | ||
false | ||
] | ||
] | ||
} | ||
} |
@@ -1,3 +0,7 @@ | ||
# emoticon [![Build Status][travis-badge]][travis] | ||
# emoticon | ||
[![Build][build-badge]][build] | ||
[![Downloads][downloads-badge]][downloads] | ||
[![Size][size-badge]][size] | ||
Info on ASCII emoticons. :p | ||
@@ -28,3 +32,4 @@ | ||
description: 'angry face', | ||
emoticons: [ '>:(', '>:[', '>:-(', '>:-[', '>=(', '>=[', '>=-(', '>=-[' ] }, | ||
emoticons: | ||
[ '>:(', '>:[', '>:-(', '>:-[', '>=(', '>=[', '>=-(', '>=-[' ] }, | ||
{ name: 'blush', | ||
@@ -64,12 +69,20 @@ emoji: '😊', | ||
[travis-badge]: https://img.shields.io/travis/wooorm/emoticon.svg | ||
[build-badge]: https://img.shields.io/travis/wooorm/emoticon.svg | ||
[travis]: https://travis-ci.org/wooorm/emoticon | ||
[build]: https://travis-ci.org/wooorm/emoticon | ||
[downloads-badge]: https://img.shields.io/npm/dm/emoticon.svg | ||
[downloads]: https://www.npmjs.com/package/emoticon | ||
[size-badge]: https://img.shields.io/bundlephobia/minzip/emoticon.svg | ||
[size]: https://bundlephobia.com/result?p=emoticon | ||
[npm]: https://docs.npmjs.com/cli/install | ||
[license]: LICENSE | ||
[license]: license | ||
[author]: http://wooorm.com | ||
[author]: https://wooorm.com | ||
[support]: support.md |
13474
87