-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
62 lines (62 loc) · 1.64 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
{
"name": "react-facebook-player",
"version": "0.1.0",
"description": "React component for Facebook embedded videos API",
"main": "dist/FacebookPlayer.js",
"repository": {
"type": "git",
"url": "git+https://github.com/fmedinac/react-facebook-player.git"
},
"keywords": [
"react",
"facebook",
"embed",
"videos",
"player",
"react-component"
],
"author": "Felipe Medina",
"license": "MIT",
"bugs": {
"url": "https://github.com/fmedinac/react-facebook-player/issues"
},
"homepage": "https://github.com/fmedinac/react-facebook-player#readme",
"dependencies": {
"lodash.isequal": "^4.0.0"
},
"devDependencies": {
"babel-cli": "^6.1.2",
"babel-core": "^6.1.2",
"babel-eslint": "^6.0.0",
"babel-loader": "^6.2.0",
"babel-preset-es2015": "^6.1.2",
"babel-preset-react": "^6.1.2",
"babel-preset-stage-0": "^6.1.2",
"eslint": "^2.0.0",
"eslint-config-airbnb": "^9.0.0",
"eslint-plugin-import": "^1.8.1",
"eslint-plugin-jsx-a11y": "^1.3.0",
"eslint-plugin-react": "^5.0.0",
"expect": "^1.12.2",
"jsdom": "^9.0.0",
"mocha": "^2.3.3",
"proxyquire": "^1.7.3",
"prop-types": "15.5.8",
"react": "^15.0.0",
"react-addons-test-utils": "^15.0.0",
"react-dom": "^15.0.0",
"webpack": "^1.12.9",
"webpack-dev-server": "^1.14.0"
},
"peerDependencies": {
"react": ">=0.14.1"
},
"scripts": {
"test": "mocha",
"compile": "babel src --out-dir dist",
"prepublish": "npm run compile",
"watch": "npm run compile -- -w",
"lint": "eslint src",
"example": "webpack-dev-server --config example/webpack.config.js"
}
}