-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
51 lines (51 loc) · 1.4 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
{
"name": "styled-query",
"version": "1.0.1",
"description": "Media queries for stylized components",
"main": "dist/styled-query.common.js",
"jsnext:main": "dist/styled-query.es.js",
"types": "./src/index.d.ts",
"scripts": {
"test": "jest",
"clean": "rimraf dist",
"build": "yarn build:common && yarn build:es && yarn build:browser",
"build:common": "rollup -c --environment COMMON,PRODUCTION",
"build:es": "rollup -c --environment ES",
"build:browser": "rollup -c --environment BROWSER,PRODUCTION"
},
"files": [
"dist",
"src"
],
"repository": {
"type": "git",
"url": "git+https://github.com/KesleyDEV/styled-query.git"
},
"keywords": [
"styled-components",
"media-query",
"media",
"breakpoint"
],
"author": "Kesley David <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/KesleyDEV/styled-query/issues"
},
"homepage": "https://github.com/KesleyDEV/styled-query#readme",
"peerDependencies": {
"styled-components": ">= 1"
},
"devDependencies": {
"@babel/core": "^7.1.6",
"@babel/preset-env": "^7.1.6",
"rimraf": "^2.6.2",
"rollup": "^0.67.3",
"rollup-plugin-babel": "^4.0.3",
"rollup-plugin-commonjs": "^9.2.0",
"rollup-plugin-node-resolve": "^3.4.0",
"rollup-plugin-uglify": "^6.0.0",
"styled-components": "^4.1.1"
},
"browserslist": "> 0.25%, not dead"
}