forked from andrewsuzuki/react-twitter-widgets
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.36 KB
/
package.json
File metadata and controls
58 lines (58 loc) · 1.36 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
52
53
54
55
56
57
58
{
"name": "react-twitter-widgets",
"version": "1.2.0",
"description": "Twitter widgets as React components",
"main": "dist/index.js",
"scripts": {
"clean": "rimraf dist",
"build": "npm run clean && babel src --out-dir dist",
"prepublish": "npm run build",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/andrewsuzuki/react-twitter-widgets.git"
},
"keywords": [
"react",
"component",
"twitter",
"widgets",
"twttr",
"timeline",
"feed",
"share",
"tweet",
"share",
"follow",
"hashtag",
"button",
"mention"
],
"author": "Andrew Suzuki",
"license": "MIT",
"bugs": {
"url": "https://github.com/andrewsuzuki/react-twitter-widgets/issues"
},
"homepage": "https://github.com/andrewsuzuki/react-twitter-widgets#readme",
"devDependencies": {
"babel-cli": "^6.6.4",
"babel-core": "^6.6.4",
"babel-eslint": "^5.0.0",
"babel-preset-es2015": "^6.6.0",
"babel-preset-react": "^6.5.0",
"babel-preset-stage-0": "^6.5.0",
"eslint": "^1.10.3",
"eslint-plugin-react": "^4.1.0",
"rimraf": "^2.5.2"
},
"dependencies": {
"exenv": "^1.2.1",
"lodash.clonedeep": "^4.3.1",
"lodash.isequal": "^4.1.1",
"scriptjs": "^2.5.8"
},
"peerDependencies": {
"react": ">=0.13"
}
}