This repository has been archived by the owner on Jan 11, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 32
/
package.json
72 lines (72 loc) · 2.21 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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
{
"name": "react-emojione",
"version": "5.0.1",
"description": "A tiny library to use emojis in React",
"main": "index.js",
"dependencies": {},
"peerDependencies": {
"react": "^16",
"react-dom": "^16"
},
"devDependencies": {
"babel-cli": "^6.3.15",
"babel-core": "^6.1.2",
"babel-es6-polyfill": "^1.0.1",
"babel-eslint": "^8.0.1",
"babel-loader": "^7.1.2",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-preset-es2015": "^6.1.2",
"babel-preset-react": "^6.1.2",
"emoji-shortnames": "^3.0.0",
"emojione": "^3.0.0",
"eslint": "^4.8.0",
"eslint-plugin-class-property": "^1.0.6",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-react": "^7.4.0",
"jsx-loader": "^0.13.2",
"react": "^16",
"react-dom": "^16",
"rimraf": "^2.4.4",
"tape": "^4.5.1",
"webpack": "^3.6.0",
"webpack-dev-server": "^2.4.2",
"canvas": "^1.6.5"
},
"files": [
"lib",
"assets",
"scripts"
],
"scripts": {
"create-emoji-data": "./scripts/create-emoji-data.js > src/data/emoji-data.js",
"create-sprites": "./scripts/generate-sprites.sh",
"create-shortnames": "./scripts/create-emoji-shortnames.js",
"start": "webpack-dev-server --inline --content-base demo/ --config ./webpack.config.js",
"clean": "rimraf lib",
"build": "yarn lint && babel src --out-dir lib",
"prepublishOnly": "yarn run clean && yarn run build && yarn test",
"test": "node test/test.js",
"lint": "eslint src"
},
"author": "Pedro Ladaria <[email protected]>",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/pladaria/react-emojione.git"
},
"keywords": [
"react",
"emoji",
"emojione",
"emojify",
"unicode",
"smileys"
],
"bugs": {
"url": "https://github.com/pladaria/react-emojione/issues"
},
"homepage": "https://github.com/pladaria/react-emojione#readme",
"publishConfig": {
"registry": "https://registry.npmjs.org"
}
}