source: frontend/node_modules/emoji-regex/package.json

Last change on this file was 9af201e, checked in by MBK <marija.karapandzova@…>, 13 days ago

Fix frontend appearance

  • Property mode set to 100644
File size: 1.3 KB
Line 
1{
2 "name": "emoji-regex",
3 "version": "9.2.2",
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 "RGI_Emoji.js",
33 "RGI_Emoji.d.ts",
34 "text.js",
35 "text.d.ts",
36 "es2015"
37 ],
38 "scripts": {
39 "build": "rm -rf -- es2015; babel src -d .; NODE_ENV=es2015 babel src es2015_types -D -d ./es2015; node script/inject-sequences.js",
40 "test": "mocha",
41 "test:watch": "npm run test -- --watch"
42 },
43 "devDependencies": {
44 "@babel/cli": "^7.4.4",
45 "@babel/core": "^7.4.4",
46 "@babel/plugin-proposal-unicode-property-regex": "^7.4.4",
47 "@babel/preset-env": "^7.4.4",
48 "@unicode/unicode-13.0.0": "^1.0.3",
49 "mocha": "^6.1.4",
50 "regexgen": "^1.3.0"
51 }
52}
Note: See TracBrowser for help on using the repository browser.