-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
38 lines (38 loc) · 910 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": "autoprefixer-tv",
"version": "0.0.2",
"description": "PostCSS plugin PostCSS plugin to split prefixed properties values into multiple rules.",
"keywords": [
"postcss",
"css",
"postcss-plugin",
"autoprefixer",
"webos",
"tv"
],
"author": "Célio Latorraca <celio.latorraca@corp.globo.com>",
"license": "MIT",
"repository": "celiolatorraca/autoprefixer-tv",
"bugs": {
"url": "https://github.com/celiolatorraca/autoprefixer-tv/issues"
},
"homepage": "https://github.com/celiolatorraca/autoprefixer-tv",
"dependencies": {
"postcss": "^6.0.1"
},
"devDependencies": {
"eslint": "^3.19.0",
"eslint-config-postcss": "^2.0.2",
"jest": "^20.0.0"
},
"scripts": {
"test": "jest && yarn lint",
"lint": "eslint *.js"
},
"eslintConfig": {
"extends": "eslint-config-postcss/es5",
"env": {
"jest": true
}
}
}