-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 886 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
39
40
41
{
"name": "postcss-inazuma",
"version": "0.0.0",
"description": "PostCSS plugin Converts px to vw based on media queries",
"keywords": [
"postcss",
"css",
"postcss-plugin",
"viewport",
"px",
"vw"
],
"author": "Vitalii Iurev <[email protected]>",
"license": "MIT",
"repository": "iurev/postcss-inazuma",
"bugs": {
"url": "https://github.com/iurev/postcss-inazuma/issues"
},
"homepage": "https://github.com/iurev/postcss-inazuma",
"dependencies": {
"postcss": "^6.0.16"
},
"devDependencies": {
"eslint": "^4.18.2",
"eslint-config-postcss": "^2.0.2",
"jest": "^22.4.2",
"postcss-devtools": "^1.1.1"
},
"scripts": {
"test": "jest && eslint *.js"
},
"eslintConfig": {
"extends": "eslint-config-postcss/es5",
"env": {
"jest": true
}
},
"jest": {
"testEnvironment": "node"
}
}