-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 1.05 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
{
"name": "postcss-suffix-breakpoints",
"version": "0.0.0",
"description": "PostCSS plugin to generate breakpoint specific css classes from a set of suffixes",
"keywords": [
"postcss",
"css",
"postcss-plugin",
"suffix",
"breakpoint",
"atomic"
],
"author": "Björn Aneer <[email protected]>",
"license": "MIT",
"repository": "beyon/postcss-suffix-breakpoints",
"bugs": {
"url": "https://github.com/beyon/postcss-suffix-breakpoints/issues"
},
"homepage": "https://github.com/beyon/postcss-suffix-breakpoints",
"dependencies": {
"postcss": "^6.0.16"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-preset-env": "^1.6.1",
"eslint": "^4.15.0",
"eslint-config-postcss": "^2.0.2",
"jest": "^21.0.0"
},
"scripts": {
"build": "babel ./src/index.js -o index.js",
"test": "jest && eslint --ext .js src/ tests/"
},
"babel": {
"presets": ["env"]
},
"eslintConfig": {
"extends": "eslint-config-postcss",
"env": {
"jest": true,
"es6": true
}
}
}