-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 1.01 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
{
"name": "emoji-line-break",
"version": "1.1.2",
"description": "Split emoji text into multiple lines.",
"main": "./src/index.js",
"scripts": {
"test": "mocha",
"build": "webpack --config webpack.config.js",
"build-canvas2d": "webpack --config webpack.config.js --env.is_canvas2d",
"lint": "eslint --fix *.js"
},
"repository": {
"type": "git",
"url": "https://github.com/Yayure/emoji-line-break.js.git"
},
"keywords": [
"emoji",
"break",
"newline",
"line",
"linebreak",
"line-break",
"word",
"word-wrap",
"multi-line",
"overflow-wrap"
],
"author": "Yayure",
"license": "MIT",
"homepage": "https://yayure.github.io/emoji-line-break.js",
"devDependencies": {
"@babel/core": "^7.8.7",
"@babel/preset-env": "^7.8.7",
"babel-loader": "^8.0.6",
"create-banner": "^1.0.0",
"eslint": "^6.8.0",
"mocha": "^7.1.1",
"webpack": "^4.42.0",
"webpack-cli": "^3.3.11"
},
"dependencies": {
"emoji-regex": "^9.0.0"
}
}