-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
72 lines (72 loc) · 1.55 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
{
"name": "postcss-structure",
"version": "0.11.5",
"description": "A bundle of PostCSS plugins.",
"keywords": [
"postcss",
"css",
"postcss-plugin",
"buttons",
"postcss-structure",
"typographic scale",
"grid fluid",
"grid system"
],
"author": "Francois Romain <[email protected]>",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/francoisromain/postcss-structure.git"
},
"bugs": {
"url": "https://github.com/francoisromain/postcss-structure/issues"
},
"homepage": "http://francoisromain.github.io/postcss-structure/",
"scripts": {
"build": "babel src --out-dir lib",
"test": "ava && eslint *.js"
},
"main": "./lib/index.js",
"dependencies": {
"postcss": "^6.0.1",
"postcss-grid-system": "0.4.8",
"postcss-grid-fluid": "0.1.17",
"postcss-typescale": "0.1.8",
"postcss-button": "0.1.19"
},
"devDependencies": {
"ava": "^0.19.1",
"babel-cli": "^6.24.1",
"babel-preset-es2015": "^6.24.1",
"babel-register": "^6.24.1",
"eslint": "^3.19.0",
"eslint-config-airbnb": "^15.0.1",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-jsx-a11y": "^5.0.3",
"eslint-plugin-react": "^7.0.1"
},
"eslintConfig": {
"extends": "airbnb",
"rules": {
"no-param-reassign": [
"error",
{
"props": false
}
]
}
},
"ava": {
"files": [
"test/tests.js"
],
"require": [
"babel-register"
]
},
"babel": {
"presets": [
"es2015"
]
}
}