-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.14 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.14 KB
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
{
"name": "react-headzoo-emoji",
"version": "0.2.2",
"main": "index.js",
"description": "React component wrapper for the twemoji library which converts unicode codepoints into emoji images.",
"author": {
"name": "Sean Hickey",
"web": "http://headzoo.io"
},
"license": "MIT",
"keywords": [
"react-component",
"react",
"emoji",
"emoticon",
"twitter",
"unicode",
"twemoji"
],
"repository": {
"type": "git",
"url": "git+https://github.com/headzoo/react-headzoo-emoji.git"
},
"peerDependencies": {
"react": "^0.14.0 || ^15.0.0"
},
"devDependencies": {
"babel-core": "^6.14.0",
"babel-jest": "^15.0.0",
"babel-loader": "^6.2.5",
"babel-preset-es2015": "^6.14.0",
"babel-preset-react": "^6.11.1",
"jest": "^15.1.1",
"react": "^15.3.1",
"react-addons-test-utils": "^15.3.1",
"react-dom": "^15.3.1",
"rimraf": "^2.5.4",
"webpack": "^1.13.2"
},
"dependencies": {
"twemoji": "^2.1.5"
},
"scripts": {
"build": "npm run clean && webpack",
"clean": "rimraf ./index.js",
"test": "jest"
},
"jest": {
"testRegex": "/tests/.*"
}
}