-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
77 lines (77 loc) · 2.13 KB
/
package.json
File metadata and controls
77 lines (77 loc) · 2.13 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
{
"name": "react-fullscreenable",
"version": "2.5.0",
"description": "React higher order component that provides fullscreen API to the enhanced component",
"author": "Grant Gingell <grantgi@zillowgroup.com>",
"license": "ISC",
"main": "lib/index.js",
"scripts": {
"start": "budo example/demo.js:browserified/demo.js --dir example --onupdate \"npm run lint\" --watch-glob \"**/*.{html,css,js}\" --open --live -- -t [ babelify ] --sourceType module",
"pretest": "npm run lint",
"prettier": "prettier --config .prettierrc --write '**/*.js'",
"clean": "rimraf lib",
"prebuild": "npm run clean && npm run lint && npm run test",
"build": "babel src --out-dir lib",
"test": "jest --coverage",
"lint": "eslint --cache demo.jsx src/*.jsx src/*.js",
"prepublish": "npm run lint --silent && npm t"
},
"files": [
"lib",
"README.md"
],
"repository": {
"type": "git",
"url": "https://github.com/ggingell/react-fullscreenable.git"
},
"publishConfig": {
"registry": "https://registry.npmjs.org/"
},
"keywords": [
"react",
"fullscreen",
"higher",
"order",
"component",
"full",
"screen"
],
"jest": {
"setupTestFrameworkScriptFile": "<rootDir>/test/setup.js",
"verbose": true,
"testRegex": ".*-test.js"
},
"devDependencies": {
"babel-cli": "^6.23.0",
"babel-jest": "^22.4.1",
"babel-preset-es2015": "^6.22.0",
"babel-preset-react": "^6.23.0",
"babelify": "^7.3.0",
"budo": "^11.3.2",
"deep-equal": "^1.0.1",
"enzyme": "^3.4.4",
"enzyme-adapter-react-16": "^1.2.0",
"eslint": "^3.16.1",
"eslint-cli": "^1.1.0",
"eslint-plugin-react": "^6.10.0",
"jest": "^22.4.2",
"jest-cli": "^23.5.0",
"jest-enzyme": "^4.2.0",
"jsdom": "^11.12.0",
"prettier": "^1.14.2",
"prettier-eslint": "^8.8.2",
"prop-types": "^15.5.8",
"react": "^16.4.2",
"react-dom": "^16.4.2",
"rimraf": "^2.6.1"
},
"dependencies": {
"classnames": "^2.2.5",
"fullscreen": "^1.1.1",
"react-display-name": "^0.2.0"
},
"peerDependencies": {
"react": "^15 || ^16",
"react-dom": "^15 || ^16"
}
}