-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
42 lines (42 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
39
40
41
42
{
"name": "node-px2rem",
"version": "2.0.5",
"description": "Pixel to rem postproccessor",
"main": "index.js",
"scripts": {
"test": "eslint . && nyc ava",
"coveralls": "nyc report --reporter=text-lcov | coveralls"
},
"repository": {
"type": "git",
"url": "https://github.com/ggkovacs/node-px2rem.git"
},
"keywords": [
"css",
"parser",
"postproccessor",
"rem",
"responsive"
],
"author": "Gergely Kovács",
"license": "MIT",
"bugs": {
"url": "https://github.com/ggkovacs/node-px2rem/issues"
},
"homepage": "https://github.com/ggkovacs/node-px2rem",
"dependencies": {
"extend": "^3.0.2",
"postcss": "^8.2.2"
},
"devDependencies": {
"ava": "^3.15.0",
"coveralls": "^3.0.5",
"eslint": "^6.1.0",
"eslint-config-mito": "^8.0.0",
"husky": "^3.0.1",
"nyc": "^14.1.1"
},
"engines": {
"node": ">=6"
}
}