-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
141 lines (141 loc) · 4.08 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
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
{
"name": "styled-flexbox-grid",
"version": "0.0.0-development",
"description": "Flexbox grid system for styled-components",
"main": "lib/index.js",
"scripts": {
"prebuild": "rimraf lib",
"build": "npm-run-all --parallel build:*",
"build:es6": "babel src --out-dir lib --ignore spec.js --source-maps",
"commitmsg": "commitlint -e $GIT_PARAMS",
"cz-commit": "git-cz",
"report-coverage": "codecov",
"deploy:gh-pages": "gh-pages -d storybook-static",
"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",
"test": "jest",
"test:coverage": "jest --coverage",
"test:watch": "jest --watch",
"start": "start-storybook -p 6006",
"build-storybook": "build-storybook",
"travis-deploy-once": "travis-deploy-once"
},
"repository": "https://github.com/johnnyBira/styled-flexbox-grid.git",
"keywords": [
"react",
"styled-components",
"responsive-props",
"grid",
"layout",
"styles",
"css",
"inline-styles",
"breakpoint",
"breakpoints",
"media-query",
"media-queries"
],
"author": "John Persson",
"license": "MIT",
"bugs": {
"url": "https://github.com/johnnyBira/styled-flexbox-grid/issues"
},
"files": [
"lib",
"README.md"
],
"jest": {
"setupTestFrameworkScriptFile": "<rootDir>/test/test-bundler.js",
"coverageThreshold": {
"global": {
"statements": 88,
"branches": 80,
"functions": 76,
"lines": 90
},
"coverageDirectory": "<rootDir>/coverage",
"coverageReporters": [
"lcov",
"html",
"text-summary"
]
},
"collectCoverage": true,
"moduleDirectories": [
"node_modules",
"src"
]
},
"homepage": "https://github.com/johnnyBira/styled-flexbox-grid#readme",
"devDependencies": {
"@commitlint/cli": "^6.1.3",
"@commitlint/config-conventional": "^6.1.3",
"@storybook/addon-actions": "^3.3.12",
"@storybook/addon-backgrounds": "^3.3.14",
"@storybook/addon-info": "^3.3.12",
"@storybook/addon-knobs": "^3.3.14",
"@storybook/addon-links": "^3.3.12",
"@storybook/addon-options": "^3.3.14",
"@storybook/react": "^3.3.12",
"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-react": "^6.24.1",
"babel-preset-stage-2": "^6.24.1",
"codecov": "^2.3.1",
"commitizen": "^2.9.6",
"commitlint": "^6.1.3",
"css-loader": "^0.28.9",
"cz-conventional-changelog": "^2.0.0",
"enzyme": "^3.3.0",
"enzyme-adapter-react-16": "^1.1.1",
"eslint": "^4.9.0",
"eslint-config-airbnb": "^16.1.0",
"eslint-loader": "^1.9.0",
"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",
"gh-pages": "^1.1.0",
"github-markdown-css": "^2.10.0",
"highlight.js": "^9.12.0",
"husky": "^0.14.3",
"jest": "^21.2.1",
"jest-enzyme": "^4.1.1",
"jest-styled-components": "^4.10.0",
"jsdom": "^11.6.2",
"npm-run-all": "^4.1.1",
"react": "^16.2.0",
"react-dom": "^16.2.0",
"react-storybook-addon-chapters": "^2.1.3",
"rimraf": "^2.6.1",
"semantic-release": "^15.0.2",
"semantic-release-cli": "^3.6.3",
"storybook-addon-markdown": "mihalik/storybook-addon-markdown",
"storybook-readme": "^3.2.1",
"style-loader": "^0.20.2",
"styled-components": "^3.2.1",
"turndown": "^4.0.1",
"turndown-plugin-gfm": "^1.0.1",
"webpack": "^3.8.1",
"travis-deploy-once": "^4.4.0"
},
"peerDependencies": {
"react": ">= 0.14.0 < 17.0.0-0",
"styled-components": ">= 2.0.0 < 4.0.0"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"dependencies": {
"prop-types": "^15.6.1",
"responsive-props": "^1.2.1"
}
}