• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1{
2  "name": "emoji-regex",
3  "version": "8.0.0",
4  "description": "A regular expression to match all Emoji-only symbols as per the Unicode Standard.",
5  "homepage": "https://mths.be/emoji-regex",
6  "main": "index.js",
7  "types": "index.d.ts",
8  "keywords": [
9    "unicode",
10    "regex",
11    "regexp",
12    "regular expressions",
13    "code points",
14    "symbols",
15    "characters",
16    "emoji"
17  ],
18  "license": "MIT",
19  "author": {
20    "name": "Mathias Bynens",
21    "url": "https://mathiasbynens.be/"
22  },
23  "repository": {
24    "type": "git",
25    "url": "https://github.com/mathiasbynens/emoji-regex.git"
26  },
27  "bugs": "https://github.com/mathiasbynens/emoji-regex/issues",
28  "files": [
29    "LICENSE-MIT.txt",
30    "index.js",
31    "index.d.ts",
32    "text.js",
33    "es2015/index.js",
34    "es2015/text.js"
35  ],
36  "scripts": {
37    "build": "rm -rf -- es2015; babel src -d .; NODE_ENV=es2015 babel src -d ./es2015; node script/inject-sequences.js",
38    "test": "mocha",
39    "test:watch": "npm run test -- --watch"
40  },
41  "devDependencies": {
42    "@babel/cli": "^7.2.3",
43    "@babel/core": "^7.3.4",
44    "@babel/plugin-proposal-unicode-property-regex": "^7.2.0",
45    "@babel/preset-env": "^7.3.4",
46    "mocha": "^6.0.2",
47    "regexgen": "^1.3.0",
48    "unicode-12.0.0": "^0.7.9"
49  }
50}
51