-
Notifications
You must be signed in to change notification settings - Fork 20
/
package.json
78 lines (78 loc) · 2.46 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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
{
"name": "react-breakpoints",
"version": "3.0.3",
"description": "A library that allows you to mount/unmount components depending on the viewport size. Welcome to the next level of responsive React applications.",
"main": "lib/index.js",
"types": "index.d.ts",
"repository": {
"type": "git",
"url": "https://github.com/ehellman/react-breakpoints.git"
},
"keywords": [
"react-breakpoints",
"responsive",
"breakpoints",
"breakpoint",
"react"
],
"scripts": {
"clean": "rimraf lib es",
"compile": "npm run compile:commonjs && npm run compile:es",
"compile:commonjs": "cross-env BABEL_ENV=commonjs babel modules --out-dir lib",
"compile:es": "cross-env BABEL_ENV=es babel modules --out-dir es --ignore test.js",
"prepublish": "npm run compile",
"prettier": "pretty-quick --staged",
"precommit": "npm run prettier",
"prepush": "npm run prettier",
"test": "jest"
},
"peerDependencies": {
"react": "^15.0.0-0 || ^16.0.0-0",
"create-react-context": ">= 0.2.1 < 1",
"lodash.debounce": ">= 4.0.8 < 5",
"prop-types": "^15.6.2"
},
"author": "Erik Hellman",
"license": "MIT",
"devDependencies": {
"babel-cli": "6.26.0",
"babel-core": "6.26.3",
"babel-jest": "^23.6.0",
"babel-loader": "7.1.5",
"babel-plugin-transform-class-properties": "6.24.1",
"babel-plugin-transform-es2015-modules-commonjs": "6.26.2",
"babel-plugin-transform-export-extensions": "6.22.0",
"babel-plugin-transform-object-rest-spread": "6.26.0",
"babel-plugin-transform-react-jsx": "6.24.1",
"babel-plugin-transform-react-remove-prop-types": "0.4.14",
"babel-preset-env": "1.7.0",
"babel-preset-es2015": "6.24.1",
"babel-preset-react": "6.24.1",
"cross-env": "5.2.0",
"enzyme": "^3.6.0",
"enzyme-adapter-react-16": "^1.5.0",
"husky": "0.14.3",
"jest": "^23.6.0",
"jest-environment-enzyme": "^6.1.2",
"jest-enzyme": "^6.1.2",
"prettier": "1.14.2",
"pretty-quick": "1.6.0",
"prop-types": "15.6.2",
"react": "^16.5.2",
"react-dom": "^16.5.2",
"rimraf": "2.6.2"
},
"dependencies": {
"lodash.debounce": "4.0.8",
"hoist-non-react-statics": "2.5.0",
"create-react-context": "0.2.2"
},
"jest": {
"setupTestFrameworkScriptFile": "jest-enzyme",
"testEnvironment": "enzyme",
"testEnvironmentOptions": {
"enzymeAdapter": "react16"
},
"testRegex": "(modules/.*)(/__tests__/.*|(\\.|/)(test|spec))\\.jsx?$"
}
}