eslint-config-chain-able
Version:
an opinionated ESLint configuration
49 lines (48 loc) • 1.24 kB
JSON
{
"name": "emoji-regex",
"version": "6.4.2",
"description": "A regular expression to match all Emoji-only symbols as per the Unicode Standard.",
"homepage": "https://mths.be/emoji-regex",
"main": "index.js",
"keywords": [
"unicode",
"regex",
"regexp",
"regular expressions",
"code points",
"symbols",
"characters",
"emoji"
],
"license": "MIT",
"author": {
"name": "Mathias Bynens",
"url": "https://mathiasbynens.be/"
},
"repository": {
"type": "git",
"url": "https://github.com/mathiasbynens/emoji-regex.git"
},
"bugs": "https://github.com/mathiasbynens/emoji-regex/issues",
"files": [
"LICENSE-MIT.txt",
"index.js",
"text.js"
],
"scripts": {
"build": "babel src -d .; node script/inject-sequences.js",
"clean": "rm -f -- index.js text.js",
"prepublish": "npm run clean && npm run build",
"test": "npm run build && mocha",
"test:watch": "npm run test -- --watch"
},
"devDependencies": {
"babel-cli": "^6.23.0",
"babel-core": "^6.18.2",
"babel-plugin-transform-unicode-property-regex": "^2.0.1",
"babel-preset-env": "^1.2.2",
"mocha": "^3.2.0",
"regexgen": "^1.2.3",
"unicode-tr51": "^8.1.1"
}
}