forked from mg901/styled-breakpoints
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
101 lines (101 loc) · 3.42 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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
{
"name": "styled-breakpoints",
"version": "6.6.3",
"description": "Simple and powerfull css breakpoints for styled-components",
"main": "dist/lib/index.js",
"module": "dist/es/index.js",
"scripts": {
"build": "npm run clean && npx rollup -c && npm run build:ts-types && npm run build:flow-types",
"build:ts-types": "npm run build:ts-types:cjs && npm run build:ts-types:es",
"build:flow-types": "npm run build:flow-types:cjs && npm run build:flow-types:es",
"build:ts-types:cjs": "cross-env cpx src/index.d.ts dist/lib",
"build:ts-types:es": "cross-env cpx src/index.d.ts dist/es",
"build:flow-types:cjs": "cross-env cpx src/index.js.flow dist/lib",
"build:flow-types:es": "cross-env cpx src/index.js.flow dist/es",
"clean": "cross-env rimraf dist",
"commit": "cross-env git-cz",
"coverage": "cross-env cat ./coverage/lcov.info | coveralls",
"prettier": "cross-env prettier './**/**/**.{json,js,eslintrc}' --write",
"semantic-release": "cross-env semantic-release",
"test": "cross-env npx flow && npm run test:code",
"test:watch": "cross-env jest --coverage --watch --updateSnapshot",
"test:code": "cross-env jest --coverage",
"lint": "cross-env eslint .",
"contributors:add": "cross-env all-contributors add",
"contributors:generate": "cross-env all-contributors generate"
},
"license": "MIT",
"homepage": "https://github.com/mg901/styled-breakpoints#readme",
"repository": {
"type": "git",
"url": "https://github.com/mg901/styled-breakpoints.git"
},
"bugs": {
"url": "https://github.com/mg901/styled-breakpoints/issues"
},
"author": "Maxim Alyoshin <[email protected]> (https://github.com/mg901)",
"keywords": [
"media",
"react",
"media",
"css-in-js",
"breakpoint",
"media-query",
"breakpoints",
"css-in-react",
"media-queries",
"styled-components",
"styled-breakpoints"
],
"files": [
"dist"
],
"publishConfig": {
"access": "public"
},
"peerDependencies": {
"styled-components": ">= 4"
},
"devDependencies": {
"@babel/core": "^7.4.3",
"@babel/preset-env": "^7.4.3",
"@babel/preset-flow": "7.0.0",
"@commitlint/cli": "^7.6.1",
"@commitlint/config-conventional": "^7.6.0",
"@semantic-release/changelog": "3.0.2",
"@semantic-release/commit-analyzer": "^6.1.0",
"@semantic-release/git": "7.0.8",
"@semantic-release/github": "5.2.10",
"@semantic-release/npm": "^5.1.7",
"@semantic-release/release-notes-generator": "^7.1.4",
"all-contributors-cli": "^6.4.0",
"babel-core": "7.0.0-bridge.0",
"babel-eslint": "10.0.1",
"babel-jest": "^24.7.0",
"commitizen": "3.1.1",
"coveralls": "3.0.3",
"cpx": "1.5.0",
"cross-env": "5.2.0",
"cz-conventional-changelog": "2.1.0",
"eslint": "5.16.0",
"eslint-config-airbnb-base": "13.1.0",
"eslint-config-prettier": "4.3.0",
"eslint-plugin-flowtype": "^3.8.2",
"eslint-plugin-import": "2.17.2",
"eslint-plugin-jest": "22.5.1",
"eslint-plugin-prettier": "^3.1.0",
"flow-bin": "^0.98.1",
"husky": "2.3.0",
"jest": "^24.8.0",
"lint-staged": "8.1.7",
"nyc": "^14.1.1",
"prettier": "^1.17.1",
"rimraf": "2.6.3",
"rollup-plugin-babel": "4.3.2",
"rollup-plugin-commonjs": "^10.0.0",
"rollup-plugin-node-resolve": "^4.2.4",
"rollup-plugin-node-resolve": "^5.0.0",
"rollup-plugin-terser": "4.0.4",
"rollup-plugin-uglify": "6.0.2"
}
}