-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
94 lines (94 loc) · 2.77 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
{
"name": "@humblebee/styled-components-breakpoint",
"version": "0.0.0-development",
"description": "Utility functions for creating breakpoints in styled-components.",
"main": "lib/index.js",
"scripts": {
"prebuild": "rimraf lib",
"build": "npm-run-all --parallel build:*",
"build:umd": "webpack",
"build:es6": "babel src --out-dir lib --ignore spec.js --source-maps",
"commitmsg": "validate-commit-msg",
"cz-commit": "git-cz",
"report-coverage": "codecov",
"setup": "npm-run-all setup:*",
"setup:semantic-release": "semantic-release-cli setup",
"setup:commitizen": "commitizen init cz-conventional-changelog --save-dev --save-exact",
"semantic-release": "semantic-release pre && npm publish && semantic-release post",
"test": "jest",
"test:coverage": "jest --coverage",
"test:watch": "jest --watch"
},
"repository": "https://github.com/wearehumblebee/styled-components-breakpoint.git",
"keywords": [
"react",
"styled-components",
"utils",
"glamour",
"styles",
"css",
"inline-styles",
"breakpoint",
"breakpoints",
"media-query",
"media-queries"
],
"author": "John Persson",
"license": "MIT",
"bugs": {
"url": "https://github.com/wearehumblebee/styled-components-breakpoint/issues"
},
"files": [
"dist",
"README.md"
],
"jest": {
"coverageDirectory": "./coverage/",
"collectCoverage": true
},
"homepage": "https://github.com/wearehumblebee/styled-components-breakpoint#readme",
"devDependencies": {
"babel": "^6.23.0",
"babel-cli": "^6.26.0",
"babel-eslint": "^8.0.1",
"babel-loader": "^7.1.2",
"babel-plugin-transform-export-extensions": "^6.22.0",
"babel-preset-env": "^1.6.1",
"babel-preset-flow": "^6.23.0",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-2": "^6.24.1",
"codecov": "^2.3.1",
"commitizen": "^2.9.6",
"cz-conventional-changelog": "^2.0.0",
"eslint": "^4.9.0",
"eslint-config-airbnb": "^16.1.0",
"eslint-loader": "^1.9.0",
"eslint-plugin-flowtype": "^2.39.1",
"eslint-plugin-import": "^2.7.0",
"eslint-plugin-jest": "^21.2.0",
"eslint-plugin-jsx-a11y": "^6.0.2",
"eslint-plugin-react": "^7.4.0",
"flow-bin": "^0.57.3",
"husky": "^0.14.3",
"jest": "^21.2.1",
"jest-cli": "^21.2.1",
"npm-run-all": "^4.1.1",
"react": "^16.5.2",
"react-dom": "^16.5.2",
"rimraf": "^2.6.1",
"semantic-release": "^8.2.0",
"semantic-release-cli": "^3.0.3",
"styled-components": "^4.0.0",
"validate-commit-msg": "^2.14.0",
"webpack": "^3.8.1"
},
"peerDependencies": {
"styled-components": ">= 2.0.0 < 5.0.0"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"dependencies": {}
}