-
Notifications
You must be signed in to change notification settings - Fork 22
/
package.json
71 lines (71 loc) · 1.74 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
{
"name": "react-twemoji",
"version": "0.6.0",
"description": "A React wrapper for Twemoji",
"keyword": [
"emoji",
"react",
"twemoji"
],
"author": "Zx.MYS <[email protected]>",
"main": "lib/Twemoji/index.js",
"engines": {
"node": ">=5.0"
},
"repository": {
"type": "git",
"url": "https://github.com/zxmys/react-twemoji"
},
"license": "MIT",
"scripts": {
"build": "yarn run lint && babel src -d lib --ignore='*-test.js'",
"example": "node example/server.js",
"lint": "eslint --ext .js ./",
"test": "karma start"
},
"babel": {
"presets": [
"@babel/preset-env",
"@babel/preset-react"
],
"plugins": [
"@babel/plugin-proposal-class-properties"
]
},
"devDependencies": {
"@babel/cli": "^7.4.4",
"@babel/core": "^7.4.5",
"@babel/plugin-proposal-class-properties": "^7.4.4",
"@babel/preset-env": "^7.4.5",
"@babel/preset-react": "^7.0.0",
"babel-eslint": "^10.0.2",
"babel-loader": "^8.0.6",
"chai": "^4.2.0",
"eslint": "^5.16.0",
"eslint-config-airbnb": "^17.1.0",
"eslint-plugin-babel": "^5.3.0",
"eslint-plugin-import": "^2.17.3",
"eslint-plugin-jsx-a11y": "^6.2.1",
"eslint-plugin-react": "^7.13.0",
"express": "^4.17.1",
"karma": "^6.3.14",
"karma-chrome-launcher": "^2.2.0",
"karma-mocha": "^1.3.0",
"karma-webpack": "^4.0.2",
"mocha": "^6.1.4",
"pretty-error": "^2.0.0",
"react": "^16.8.6",
"react-dom": "^16.8.6",
"webpack": "^5.94.0",
"webpack-cli": "^3.3.4",
"webpack-dev-middleware": "^5.3.4"
},
"dependencies": {
"lodash.isequal": "^4.5.0",
"prop-types": "^15.7.2",
"@twemoji/api": "15.1.0"
},
"peerDependencies": {
"react": ">=16.4.2"
}
}