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