package.json 870 B

12345678910111213141516171819202122232425262728293031323334353637
  1. {
  2. "name": "px2rem",
  3. "description": "According to one stylesheet, generate rem version and @1x, @2x and @3x stylesheet",
  4. "version": "0.5.0",
  5. "homepage": "https://github.com/songsiqi/px2rem",
  6. "author": "songsiqi <songsiqi2006@126.com>",
  7. "repository": {
  8. "type": "git",
  9. "url": "git@github.com:songsiqi/px2rem.git"
  10. },
  11. "dependencies": {
  12. "css": "~2.2.0",
  13. "extend": "~3.0.0",
  14. "commander": "~2.6.0",
  15. "chalk": "~0.5.1",
  16. "fs-extra": "~0.16.3"
  17. },
  18. "devDependencies": {
  19. "istanbul": "^0.3.6",
  20. "coveralls": "^2.10.0",
  21. "mocha": "^2.1.0"
  22. },
  23. "bin": {
  24. "px2rem": "./bin/px2rem.js"
  25. },
  26. "scripts": {
  27. "test": "mocha",
  28. "cover": "node node_modules/.bin/istanbul cover ./node_modules/.bin/_mocha -- --reporter dot"
  29. },
  30. "main": "index.js",
  31. "keywords": [
  32. "3x",
  33. "rem",
  34. "px2rem"
  35. ],
  36. "license": "MIT"
  37. }