-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
76 lines (76 loc) · 2.15 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
{
"name": "postcss-responsive-hints",
"version": "0.0.0-development",
"description": "PostCSS plugin that makes it easier to write responsive styles",
"main": "src/index.js",
"scripts": {
"test": "jest",
"lint": "eslint './src/**/*.js' './example/**/*.js'",
"commit": "git-cz",
"semantic-release": "semantic-release",
"build:example": "NODE_ENV=production webpack --progress --config ./example/webpack/webpack.production.config.js",
"start:example": "NODE_ENV=development webpack --progress --config ./example/webpack/webpack.development.config.js"
},
"husky": {
"hooks": {
"pre-commit": "npm run lint"
}
},
"prettier": {
"semi": false,
"singleQuote": true,
"trailingComma": "all",
"bracketSpacing": true,
"jsxBracketSameLine": true
},
"engines": {
"node": ">=10"
},
"repository": {
"type": "git",
"url": "https://github.com/smashercosmo/postcss-responsive-hints.git"
},
"keywords": [
"postcss",
"postcss-plugin"
],
"author": "Vladislav Shkodin <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/smashercosmo/postcss-responsive-hints/issues"
},
"homepage": "https://github.com/smashercosmo/postcss-responsive-hints#readme",
"peerDependencies": {
"postcss": ">=6"
},
"devDependencies": {
"app-root-path": "3.0.0",
"clean-webpack-plugin": "3.0.0",
"commitizen": "4.0.3",
"css-loader": "3.2.1",
"cz-conventional-changelog": "3.0.2",
"eslint": "6.7.2",
"eslint-config-airbnb-base": "14.0.0",
"eslint-config-prettier": "6.7.0",
"eslint-plugin-import": "2.18.2",
"eslint-plugin-prettier": "3.1.1",
"html-webpack-plugin": "3.2.0",
"husky": "3.1.0",
"jest": "24.9.0",
"mini-css-extract-plugin": "0.8.0",
"postcss": "7.0.23",
"postcss-loader": "3.0.0",
"prettier": "1.19.1",
"semantic-release": "15.13.31",
"semantic-release-cli": "5.2.3",
"style-loader": "1.0.1",
"webpack": "4.41.2",
"webpack-cli": "3.3.10",
"webpack-plugin-serve": "0.12.1"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}