-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
38 lines (38 loc) · 916 Bytes
/
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
{
"name": "postcss-brewbox-plugin",
"version": "0.0.0",
"description": "PostCSS plugin to demonstrate how to write a PostCSS plugin @ Brewbox",
"keywords": [
"postcss",
"css",
"postcss-plugin",
"cobox",
"brewbox",
"talk"
],
"author": "",
"license": "MIT",
"repository": "brewboxit/postcss-brewbox-plugin",
"bugs": {
"url": "https://github.com/brewboxit/postcss-brewbox-plugin/issues"
},
"homepage": "https://github.com/brewboxit/postcss-brewbox-plugin",
"dependencies": {
"postcss": "^5.2.0"
},
"devDependencies": {
"eslint": "^3.4.0",
"eslint-config-airbnb-base": "^8.0.0",
"eslint-config-postcss": "^2.0.2",
"eslint-plugin-import": "^1.16.0",
"ava": "^0.16.0"
},
"scripts": {
"start": "ava && eslint *.js",
"test": "ava",
"lint": "eslint *.js"
},
"eslintConfig": {
"extends": "eslint-config-postcss/es5"
}
}