package.json 3.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119
  1. {
  2. "_args": [
  3. [
  4. "csso@2.3.2",
  5. "E:\\amr1.0\\AMR"
  6. ]
  7. ],
  8. "_development": true,
  9. "_from": "csso@2.3.2",
  10. "_id": "csso@2.3.2",
  11. "_inBundle": false,
  12. "_integrity": "sha1-3dUsWHAz9J6Utx/FVWnyUuj/X4U=",
  13. "_location": "/csso",
  14. "_phantomChildren": {},
  15. "_requested": {
  16. "type": "version",
  17. "registry": true,
  18. "raw": "csso@2.3.2",
  19. "name": "csso",
  20. "escapedName": "csso",
  21. "rawSpec": "2.3.2",
  22. "saveSpec": null,
  23. "fetchSpec": "2.3.2"
  24. },
  25. "_requiredBy": [
  26. "/svgo"
  27. ],
  28. "_resolved": "https://registry.npmjs.org/csso/-/csso-2.3.2.tgz",
  29. "_spec": "2.3.2",
  30. "_where": "E:\\amr1.0\\AMR",
  31. "author": {
  32. "name": "Sergey Kryzhanovsky",
  33. "email": "skryzhanovsky@ya.ru",
  34. "url": "https://github.com/afelix"
  35. },
  36. "bin": {
  37. "csso": "bin/csso"
  38. },
  39. "bugs": {
  40. "url": "https://github.com/css/csso/issues"
  41. },
  42. "dependencies": {
  43. "clap": "^1.0.9",
  44. "source-map": "^0.5.3"
  45. },
  46. "description": "CSSO (CSS Optimizer) is a CSS minifier with structural optimisations",
  47. "devDependencies": {
  48. "browserify": "^13.0.0",
  49. "coveralls": "^2.11.6",
  50. "eslint": "^2.2.0",
  51. "istanbul": "^0.4.2",
  52. "jscs": "~2.10.0",
  53. "mocha": "~2.4.2",
  54. "uglify-js": "^2.6.1"
  55. },
  56. "engines": {
  57. "node": ">=0.10.0"
  58. },
  59. "eslintConfig": {
  60. "env": {
  61. "node": true,
  62. "mocha": true,
  63. "es6": true
  64. },
  65. "rules": {
  66. "no-duplicate-case": 2,
  67. "no-undef": 2,
  68. "no-unused-vars": [
  69. 2,
  70. {
  71. "vars": "all",
  72. "args": "after-used"
  73. }
  74. ]
  75. }
  76. },
  77. "files": [
  78. "bin",
  79. "dist/csso-browser.js",
  80. "lib",
  81. "HISTORY.md",
  82. "LICENSE",
  83. "README.md"
  84. ],
  85. "homepage": "https://github.com/css/csso",
  86. "keywords": [
  87. "css",
  88. "minifier",
  89. "minify",
  90. "compress",
  91. "optimisation"
  92. ],
  93. "license": "MIT",
  94. "main": "./lib/index",
  95. "maintainers": [
  96. {
  97. "name": "Roman Dvornov",
  98. "email": "rdvornov@gmail.com"
  99. }
  100. ],
  101. "name": "csso",
  102. "repository": {
  103. "type": "git",
  104. "url": "git+https://github.com/css/csso.git"
  105. },
  106. "scripts": {
  107. "browserify": "browserify --standalone csso lib/index.js | uglifyjs --compress --mangle -o dist/csso-browser.js",
  108. "codestyle": "jscs lib && eslint lib test",
  109. "codestyle-and-test": "npm run codestyle && npm test",
  110. "coverage": "istanbul cover _mocha -- -R dot",
  111. "coveralls": "istanbul cover _mocha --report lcovonly -- -R dot && cat ./coverage/lcov.info | coveralls",
  112. "gh-pages": "git clone -b gh-pages https://github.com/css/csso.git .gh-pages && npm run browserify && cp dist/csso-browser.js .gh-pages/ && cd .gh-pages && git commit -am \"update\" && git push && cd .. && rm -rf .gh-pages",
  113. "hydrogen": "node --trace-hydrogen --trace-phase=Z --trace-deopt --code-comments --hydrogen-track-positions --redirect-code-traces --redirect-code-traces-to=code.asm --trace_hydrogen_file=code.cfg --print-opt-code bin/csso --stat -o /dev/null",
  114. "prepublish": "npm run browserify",
  115. "test": "mocha --reporter dot",
  116. "travis": "npm run codestyle-and-test && npm run coveralls"
  117. },
  118. "version": "2.3.2"
  119. }