package.json 3.1 KB

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