-
Notifications
You must be signed in to change notification settings - Fork 11
/
package.json
60 lines (60 loc) · 1.65 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
{
"name": "react-messenger-plugin",
"version": "2.1.0",
"description": "React wrapper for the Facebook Messenger Plugin",
"main": "lib/MessengerPluginWrapper.js",
"scripts": {
"build": "rm -rf lib/ && babel -d lib/ src/",
"patch": "release patch",
"minor": "release minor",
"major": "release major"
},
"repository": {
"type": "git",
"url": "git+https://github.com/lemieux/react-messenger-plugin.git"
},
"keywords": [
"react",
"facebook",
"messenger",
"send-to-messenger"
],
"author": "Marc-Antoine Lemieux",
"license": "MIT",
"bugs": {
"url": "https://github.com/lemieux/react-messenger-plugin/issues"
},
"homepage": "https://github.com/lemieux/react-messenger-plugin#readme",
"dependencies": {
"react-async-script": "0.9.1"
},
"devDependencies": {
"babel-cli": "6.9.0",
"babel-core": "6.9.0",
"babel-eslint": "6.0.4",
"babel-plugin-transform-class-properties": "6.9.0",
"babel-plugin-transform-runtime": "6.9.0",
"babel-polyfill": "6.9.0",
"babel-preset-es2015": "6.9.0",
"babel-preset-es2015-loose": "7.0.0",
"babel-preset-react": "6.5.0",
"babel-preset-stage-2": "6.5.0",
"babel-runtime": "6.9.0",
"esformatter": "0.9.2",
"esformatter-braces": "1.2.1",
"esformatter-dot-notation": "1.3.1",
"esformatter-jsx": "4.1.4",
"esformatter-quotes": "1.0.3",
"eslint": "2.3.0",
"eslint-plugin-react": "4.2.3",
"prop-types": "15.5.10",
"react": "0.14.7",
"react-dom": "0.14.7",
"release-script": "1.0.2"
},
"peerDependencies": {
"babel-runtime": ">=6.9.0",
"react": ">=0.14.0",
"react-dom": ">=0.14.0"
}
}