package.json 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. {
  2. "name": "extract-from-css",
  3. "version": "0.4.4",
  4. "description": "Extract information from CSS code",
  5. "main": "lib/index.js",
  6. "repository": {
  7. "type": "git",
  8. "url": "https://github.com/rubennorte/extract-from-css.git"
  9. },
  10. "bugs": "https://github.com/rubennorte/extract-from-css/issues",
  11. "scripts": {
  12. "lint": "jscs . && jscs ./tests && jshint .",
  13. "pretest": "npm run lint",
  14. "test": "JASMINE_CONFIG_PATH=tests/jasmine.json jasmine",
  15. "coverage": "JASMINE_CONFIG_PATH=tests/jasmine.json istanbul cover jasmine",
  16. "benchmark": "node tests/benchmark/benchmark.js",
  17. "build": "npm test",
  18. "travis": "npm run coverage && cat ./tests/output/coverage/lcov.info | coveralls && rm -rf ./tests/output/coverage",
  19. "release": "npm run build && mversion -m \"New version: %s\" "
  20. },
  21. "files": [
  22. "lib",
  23. "CHANGELOG.md"
  24. ],
  25. "author": "Rubén Norte <rubennorte@gmail.com>",
  26. "license": "MIT",
  27. "devDependencies": {
  28. "benchmark": "^1.0.0",
  29. "coveralls": "^2.11.2",
  30. "istanbul": "^0.3.5",
  31. "jasmine": "^2.2.1",
  32. "jscs": "^1.11.3",
  33. "jshint": "^2.5.10",
  34. "mversion": "^1.9.0"
  35. },
  36. "dependencies": {
  37. "css": "^2.1.0"
  38. },
  39. "engines": {
  40. "node": ">=0.10.0",
  41. "npm": ">=2.0.0"
  42. }
  43. }