package.json 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  1. {
  2. "name": "individual",
  3. "version": "2.0.0",
  4. "description": "Garantueed individual values",
  5. "keywords": [],
  6. "author": "Raynos <raynos2@gmail.com>",
  7. "repository": "git://github.com/Raynos/individual.git",
  8. "main": "index",
  9. "homepage": "https://github.com/Raynos/individual",
  10. "contributors": [
  11. {
  12. "name": "Jake Verbaten"
  13. }
  14. ],
  15. "bugs": {
  16. "url": "https://github.com/Raynos/individual/issues",
  17. "email": "raynos2@gmail.com"
  18. },
  19. "dependencies": {},
  20. "devDependencies": {
  21. "coveralls": "^2.10.0",
  22. "istanbul": "^0.2.7",
  23. "run-browser": "^1.3.1",
  24. "tape": "^2.12.3"
  25. },
  26. "licenses": [
  27. {
  28. "type": "MIT",
  29. "url": "http://github.com/Raynos/individual/raw/master/LICENSE"
  30. }
  31. ],
  32. "scripts": {
  33. "test": "node test.js",
  34. "cover": "istanbul cover --report none --print detail test.js",
  35. "travis": "npm run cover -s && istanbul report lcov && ((cat coverage/lcov.info | coveralls) || exit 0)"
  36. },
  37. "testling": {
  38. "files": "test.js",
  39. "browsers": [
  40. "ie/8..latest",
  41. "firefox/16..latest",
  42. "firefox/nightly",
  43. "chrome/22..latest",
  44. "chrome/canary",
  45. "opera/12..latest",
  46. "opera/next",
  47. "safari/5.1..latest",
  48. "ipad/6.0..latest",
  49. "iphone/6.0..latest",
  50. "android-browser/4.2..latest"
  51. ]
  52. }
  53. }