-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
53 lines (53 loc) · 1.16 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
{
"name": "postcss-plumber",
"version": "0.3.0",
"description": "Postcss plugin for Plumber",
"main": "index.js",
"scripts": {
"lint": "xo index.js --extend eslint-config-postcss",
"test": "npm run lint && ava",
"watch": "npm test -- --watch"
},
"repository": {
"type": "git",
"url": "git+https://[email protected]/jamonserrano/postcss-plumber.git"
},
"keywords": [
"plumber",
"vertical-rhythm",
"typography",
"baseline-grid",
"css",
"postcss-plugin"
],
"author": "Viktor Honti",
"license": "MIT",
"bugs": {
"url": "https://github.com/jamonserrano/postcss-plumber/issues"
},
"homepage": "https://github.com/jamonserrano/postcss-plumber#readme",
"devDependencies": {
"ava": "^0.17.0",
"eslint-config-postcss": "^2.0.2",
"xo": "^0.17.1"
},
"dependencies": {
"postcss": "^5.2.11"
},
"xo": {
"rules": {
"max-len": [
1,
100,
2
],
"no-mixed-operators": 0,
"no-extra-parens": 0,
"one-var": 0,
"no-warning-comments": 0,
"arrow-parens": 0,
"operator-assignment": 0,
"prefer-arrow-callback": 0
}
}
}