package.json 925 B

12345678910111213141516171819202122232425262728293031323334353637383940
  1. {
  2. "name": "any-base",
  3. "version": "1.1.0",
  4. "description": "Converter from any base to other any base",
  5. "main": "index.js",
  6. "scripts": {
  7. "start": "./node_modules/.bin/watchify . -s AnyBase -o dist/any-base.js -v -d",
  8. "build": "./node_modules/.bin/browserify . -s AnyBase | ./node_modules/.bin/uglifyjs -cm > dist/any-base.min.js",
  9. "test": "node tests/test.js"
  10. },
  11. "keywords": [
  12. "number",
  13. "convert",
  14. "base",
  15. "alphabet",
  16. "short number",
  17. "long numbers",
  18. "dec",
  19. "hex",
  20. "bin",
  21. "oct",
  22. "any"
  23. ],
  24. "repository": {
  25. "type": "git",
  26. "url": "https://github.com/HarasimowiczKamil/any-base.git"
  27. },
  28. "author": {
  29. "name": "Kamil Harasimowicz",
  30. "email": "mifczu@gmail.com"
  31. },
  32. "license": "MIT",
  33. "dependencies": {},
  34. "devDependencies": {
  35. "browserify": "^13.1.1",
  36. "punycode": "^2.1.0",
  37. "uglify-js": "^2.7.4",
  38. "watchify": "^3.7.0"
  39. }
  40. }