forked from mg901/styled-breakpoints
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
81 lines (81 loc) · 2.28 KB
/
package.json
File metadata and controls
81 lines (81 loc) · 2.28 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
78
79
80
81
{
"name": "@sorosora/styled-breakpoints",
"version": "5.0.1",
"description": "Simple and powerful css breakpoints for styled-components",
"main": "dist/styled-breakpoints.common.js",
"module": "dist/styled-breakpoints.es.js",
"jsnext:main": "dist/styled-breakpoints.es.js",
"keywords": [
"styled-components",
"media-query",
"media",
"breakpoint",
"css-in-js"
],
"scripts": {
"unit:watch": "NODE_ENV=test jest --watch",
"build": "npm run clean && npm run build:common && npm run build:es && npm run build:browser",
"build:common": "cross-env rollup -c --environment COMMON,PRODUCTION",
"build:es": "cross-env rollup -c --environment ES",
"build:browser": "cross-env rollup -c --environment BROWSER,PRODUCTION",
"clean": "cross-env rimraf dist"
},
"files": [
"dist",
"src"
],
"repository": {
"type": "git",
"url": "git+https://github.com/sorosora/styled-breakpoints.git"
},
"contributors": [
"Maxim Alyoshing <mgreen097@gmail.com>",
"Sergey Sova <mail@sergeysova.com> (https://sergeysova.com)",
"Scott Dowding (https://github.com/sdowding)",
"Jackson Wang <jackson90295@gmail.com>"
],
"license": "MIT",
"devDependencies": {
"@babel/core": "^7.1.2",
"@babel/preset-env": "^7.1.0",
"babel-jest": "^23.6.0",
"cross-env": "^5.2.0",
"eslint": "^5.8.0",
"eslint-config-airbnb": "^17.1.0",
"eslint-config-prettier": "^3.1.0",
"eslint-plugin-import": "^2.11.0",
"eslint-plugin-jsx-a11y": "^6.0.3",
"eslint-plugin-prettier": "^3.0.0",
"eslint-plugin-react": "^7.7.0",
"jest": "^23.6.0",
"rimraf": "^2.6.2",
"rollup": "^0.67.0",
"rollup-plugin-babel": "^4.0.3",
"rollup-plugin-commonjs": "^9.2.0",
"rollup-plugin-node-resolve": "^3.0.0",
"rollup-plugin-uglify": "^6.0.0",
"styled-components": "^4.0.3"
},
"jest": {
"collectCoverage": false,
"transform": {
"^.+\\.js$": "./node_modules/babel-jest"
},
"testFileExtensions": [
"es6",
"js"
],
"moduleFileExtensions": [
"js",
"json",
"es6"
]
},
"bugs": {
"url": "https://github.com/sorosora/styled-breakpoints/issues"
},
"homepage": "https://github.com/sorosora/styled-breakpoints#readme",
"dependencies": {
},
"author": ""
}