-
Notifications
You must be signed in to change notification settings - Fork 92
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 870 Bytes
/
package.json
File metadata and controls
37 lines (37 loc) · 870 Bytes
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
{
"name": "px2rem",
"description": "According to one stylesheet, generate rem version and @1x, @2x and @3x stylesheet",
"version": "0.5.0",
"homepage": "https://github.com/songsiqi/px2rem",
"author": "songsiqi <songsiqi2006@126.com>",
"repository": {
"type": "git",
"url": "git@github.com:songsiqi/px2rem.git"
},
"dependencies": {
"css": "~2.2.0",
"extend": "~3.0.0",
"commander": "~2.6.0",
"chalk": "~0.5.1",
"fs-extra": "~0.16.3"
},
"devDependencies": {
"istanbul": "^0.3.6",
"coveralls": "^2.10.0",
"mocha": "^2.1.0"
},
"bin": {
"px2rem": "./bin/px2rem.js"
},
"scripts": {
"test": "mocha",
"cover": "node node_modules/.bin/istanbul cover ./node_modules/.bin/_mocha -- --reporter dot"
},
"main": "index.js",
"keywords": [
"3x",
"rem",
"px2rem"
],
"license": "MIT"
}