forked from pladaria/react-emojione
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
61 lines (61 loc) · 1.71 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
{
"name": "react-emojione3",
"version": "2.0.0",
"description": "A tiny ES6 library to use emojis in React. Emojis without tooltip, sorry",
"main": "lib/react-emojione.js",
"dependencies": {},
"peerDependencies": {
"react": "^15.3.2",
"react-dom": "^15.3.2"
},
"devDependencies": {
"babel-cli": "^6.3.15",
"babel-core": "^6.1.2",
"babel-es6-polyfill": "^1.0.1",
"babel-loader": "^6.0.1",
"babel-preset-es2015": "^6.1.2",
"babel-preset-react": "^6.1.2",
"emoji-shortnames": "^1.0.1",
"emojione": "1.5.2",
"eslint": "^1.10.3",
"eslint-plugin-react": "^3.11.3",
"jsx-loader": "^0.13.2",
"rimraf": "^2.4.4",
"tape": "^4.5.1",
"webpack": "^1.12.3",
"webpack-dev-server": "^1.12.1"
},
"files": [
"lib",
"assets",
"scripts"
],
"scripts": {
"create-emoji-data": "./scripts/create-emoji-data.js > src/data/emoji-data.js",
"create-styles": "./scripts/create-styles.js > src/styles/emojione-sprite-positions.js",
"dev-server": "webpack-dev-server --inline --content-base demo/ --config ./webpack.config.js",
"clean": "rimraf lib",
"build": "npm run lint && babel src --out-dir lib",
"prepublish": "npm run clean && npm run build",
"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"
}