package.json 837 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. {
  2. "author": "Felix Böhm <me@feedic.com> (http://feedic.com)",
  3. "name": "css-what",
  4. "description": "a CSS selector parser",
  5. "version": "2.1.3",
  6. "repository": {
  7. "url": "https://github.com/fb55/css-what"
  8. },
  9. "main": "./index.js",
  10. "files": [
  11. "index.js"
  12. ],
  13. "scripts": {
  14. "test": "node tests/test.js && jshint *.js"
  15. },
  16. "dependencies": {},
  17. "devDependencies": {
  18. "jshint": "2"
  19. },
  20. "optionalDependencies": {},
  21. "engines": {
  22. "node": "*"
  23. },
  24. "license": "BSD-2-Clause",
  25. "jshintConfig": {
  26. "eqeqeq": true,
  27. "freeze": true,
  28. "latedef": "nofunc",
  29. "noarg": true,
  30. "nonbsp": true,
  31. "undef": true,
  32. "unused": true,
  33. "eqnull": true,
  34. "proto": true,
  35. "node": true,
  36. "globals": {
  37. "describe": true,
  38. "it": true
  39. }
  40. },
  41. "prettier": {
  42. "tabWidth": 4
  43. }
  44. }