forked from ThomWright/react-fullscreen
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
47 lines (47 loc) · 1.28 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
{
"name": "react-fullscreen",
"version": "0.1.0",
"description": "React component that fullscreens a child component. Responds to browser resizes.",
"main": "dist/index.js",
"scripts": {
"build": "rimraf dist && babel src --out-dir dist --ignore \"__tests__\"",
"lint": "eslint src/",
"mocha": "mocha **/*__tests__/* -R spec --require test-setup",
"test": "npm run lint && npm run mocha",
"prepublish": "npm test && npm run build && npm shrinkwrap",
"postpublish": "rm npm-shrinkwrap.json"
},
"repository": {
"type": "git",
"url": "https://github.com/ThomWright/react-fullscreen"
},
"keywords": [
"react",
"full",
"screen",
"fullscreen",
"full-screen",
"maximise",
"react-component"
],
"author": "Thom Wright <[email protected]> (http://thomwright.co.uk/)",
"license": "MIT",
"bugs": {
"url": "https://github.com/ThomWright/react-fullscreen/issues"
},
"homepage": "https://github.com/ThomWright/react-fullscreen",
"dependencies": {},
"devDependencies": {
"babel": "^5.4.7",
"babel-eslint": "^3.1.9",
"chai": "^3",
"eslint": "^0",
"eslint-plugin-react": "^2.2.0",
"mocha": "^2.2.5",
"react": "^15.0.0",
"rimraf": "^2.3.4"
},
"peerDependencies": {
"react": "^15.0.0"
}
}