forked from GMchris/postcss-camelcaser
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
33 lines (33 loc) · 789 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
{
"name": "postcss-camelcaser",
"version": "0.1.1",
"description": "PostCSS plugin which camelcases all your selectors.",
"keywords": [
"postcss",
"css",
"postcss-plugin",
"camelcase",
"camel-case"
],
"author": "Kristian Ignatov <christianignatov@gmail.com>",
"license": "MIT",
"repository": "GMchris/postcss-camelcaser",
"bugs": {
"url": "https://github.com/GMchris/postcss-camelcaser/issues"
},
"homepage": "https://github.com/GMchris/postcss-camelcaser",
"dependencies": {
"postcss": "^5.0.21"
},
"devDependencies": {
"ava": "^0.14.0",
"eslint": "^2.10.0",
"eslint-config-postcss": "^2.0.2"
},
"scripts": {
"test": "ava && eslint *.js"
},
"eslintConfig": {
"extends": "eslint-config-postcss/es5"
}
}