package.json 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061
  1. {
  2. "name": "css-select",
  3. "version": "1.2.0",
  4. "description": "a CSS selector compiler/engine",
  5. "author": "Felix Boehm <me@feedic.com>",
  6. "keywords": [
  7. "css",
  8. "selector",
  9. "sizzle"
  10. ],
  11. "repository": {
  12. "type": "git",
  13. "url": "git://github.com/fb55/css-select.git"
  14. },
  15. "files": [
  16. "index.js",
  17. "lib"
  18. ],
  19. "dependencies": {
  20. "css-what": "2.1",
  21. "domutils": "1.5.1",
  22. "boolbase": "~1.0.0",
  23. "nth-check": "~1.0.1"
  24. },
  25. "devDependencies": {
  26. "htmlparser2": "*",
  27. "cheerio-soupselect": "*",
  28. "mocha": "*",
  29. "mocha-lcov-reporter": "*",
  30. "coveralls": "*",
  31. "istanbul": "*",
  32. "expect.js": "*",
  33. "jshint": "2"
  34. },
  35. "scripts": {
  36. "test": "mocha && npm run lint",
  37. "lint": "jshint index.js lib/*.js test/*.js",
  38. "lcov": "istanbul cover _mocha --report lcovonly -- -R spec",
  39. "coveralls": "npm run lint && npm run lcov && (cat coverage/lcov.info | coveralls || exit 0)"
  40. },
  41. "license": "BSD-like",
  42. "jshintConfig": {
  43. "eqeqeq": true,
  44. "freeze": true,
  45. "latedef": "nofunc",
  46. "noarg": true,
  47. "nonbsp": true,
  48. "quotmark": "double",
  49. "undef": true,
  50. "unused": true,
  51. "trailing": true,
  52. "eqnull": true,
  53. "proto": true,
  54. "smarttabs": true,
  55. "node": true,
  56. "globals": {
  57. "describe": true,
  58. "it": true
  59. }
  60. }
  61. }