package.json 770 B

12345678910111213141516171819202122232425262728293031323334
  1. {
  2. "name": "multimap",
  3. "version": "1.1.0",
  4. "description": "multi-map which allow multiple values for the same key",
  5. "main": "index.js",
  6. "scripts": {
  7. "lint": "./node_modules/.bin/jshint *.js test/*.js",
  8. "test": "npm run lint; node test/index.js;node test/es6map.js"
  9. },
  10. "repository": {
  11. "type": "git",
  12. "url": "git://github.com/villadora/multi-map.git"
  13. },
  14. "bugs": {
  15. "url": "https://github.com/villadora/multi-map/issues"
  16. },
  17. "keywords": [
  18. "keys",
  19. "map",
  20. "multiple"
  21. ],
  22. "dependencies": {},
  23. "devDependencies": {
  24. "chai": "~1.7.2",
  25. "es6-shim": "^0.13.0",
  26. "jshint": "~2.1.9"
  27. },
  28. "readmeFilename": "README.md",
  29. "author": {
  30. "name": "villa.gao",
  31. "email": "jky239@gmail.com"
  32. },
  33. "license": "MIT"
  34. }