data-provider-temporary
Version:
Library that helps with server-to-client synchronization of data
51 lines (50 loc) • 1.33 kB
JSON
{
"name": "emoji-regex",
"version": "6.5.1",
"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",
"es2015/index.js",
"es2015/text.js"
],
"scripts": {
"build": "babel src -d .; NODE_ENV=es2015 babel src -d ./es2015; node script/inject-sequences.js",
"clean": "rm -rf -- index.js text.js es2015",
"prepublish": "npm run clean && npm run build",
"test": "npm run build && mocha",
"test:watch": "npm run test -- --watch"
},
"devDependencies": {
"babel-cli": "^6.24.1",
"babel-core": "^6.25.0",
"babel-plugin-transform-unicode-property-regex": "^2.0.2",
"babel-preset-env": "^1.6.0",
"mocha": "^3.4.2",
"regexgen": "^1.3.0",
"unicode-tr51": "^8.1.2"
}
}