-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
78 lines (78 loc) · 1.69 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
{
"name": "postcss-grid-system",
"version": "0.5.2",
"description": "A PostCSS plugin to create grids based on a fixed column width.",
"keywords": [
"postcss",
"css",
"postcss-plugin",
"grid",
"grid-system",
"flexbox",
"float",
"masonry",
"postcss-structure"
],
"author": "Francois Romain <[email protected]>",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/francoisromain/postcss-grid-system.git"
},
"bugs": {
"url": "https://github.com/francoisromain/postcss-grid-system/issues"
},
"homepage": "http://francoisromain.github.io/postcss-grid-system/",
"main": "./lib/index.js",
"scripts": {
"build": "babel src --out-dir lib",
"test": "npm run build && ava"
},
"peerDependencies": {
"postcss": "^8.2.2"
},
"devDependencies": {
"@babel/cli": "^7.12.10",
"@babel/core": "^7.12.10",
"@babel/preset-env": "^7.12.11",
"@babel/register": "^7.12.10",
"ava": "^3.15.0",
"clean-publish": "^1.1.8",
"eslint": "^7.17.0",
"eslint-config-airbnb": "^18.2.1",
"eslint-config-prettier": "^7.1.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-prettier": "^3.3.1",
"eslint-plugin-react": "^7.22.0",
"postcss": "^8.2.2"
},
"prettier": {
"singleQuote": true
},
"eslintConfig": {
"extends": [
"airbnb",
"prettier"
],
"plugins": [
"prettier"
],
"rules": {
"no-param-reassign": [
"error",
{
"props": false
}
]
}
},
"ava": {
"files": [
"test/tests.js"
],
"require": [
"@babel/register"
]
}
}