-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
69 lines (69 loc) · 1.91 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
{
"name": "react-styled-mediaquery",
"version": "1.2.1",
"description": "Simple and practical utility for managing media queries in react with styled components",
"main": "./lib/index.js",
"module": "./dist/react-styled-mediaquery.es.js",
"types": "./lib/index.d.ts",
"unpkg": "./dist/react-styled-mediaquery.js",
"scripts": {
"build": "rollup -c && yarn measure",
"watch": "rollup -c -w",
"test": "jest --maxWorkers=2",
"measure": "gzip -c dist/react-styled-mediaquery.js | wc -c",
"prettier": "prettier ./src/* --write",
"start": "concurrently 'gatsby develop' 'yarn watch'",
"prepare": "yarn build",
"deploy": "gatsby build --prefix-paths && gh-pages -d public"
},
"repository": {
"type": "git",
"url": "https://github.com/pixelize/react-styled-mediaquery"
},
"files": [
"dist",
"lib"
],
"keywords": [
"breakpoint",
"styled-components",
"responsive",
"media query",
"react",
"media queries"
],
"author": "Gauthier Eloy",
"license": "MIT",
"peerDependencies": {
"react": "^16.3.2",
"react-dom": "^16.3.2",
"styled-components": "^4 || ^5"
},
"devDependencies": {
"@types/jest": "^24.0.18",
"@types/react": "^16.9.2",
"@types/react-dom": "^16.9.0",
"@types/styled-components": "^4.1.19",
"concurrently": "^4.1.2",
"gatsby": "^2.15.14",
"gh-pages": "^2.1.1",
"jest": "^24.9.0",
"jest-cli": "^24.9.0",
"prettier": "^1.18.2",
"react": "^16.9.0",
"react-dom": "^16.9.0",
"react-testing-library": "^8.0.1",
"rollup": "^1.21.2",
"rollup-plugin-auto-external": "^2.0.0",
"rollup-plugin-commonjs": "^10.1.0",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-replace": "^2.2.0",
"rollup-plugin-typescript2": "^0.24.1",
"rollup-plugin-uglify": "^6.0.3",
"typescript": "^3.6.2",
"uglify": "^0.1.5"
},
"prettier": {
"parser": "typescript"
}
}