UNPKG

@nogsantos/hash

Version:

Sha1 and Md5 hash encoder for javascript

91 lines (90 loc) 2.52 kB
{ "name": "@nogsantos/hash", "version": "0.2.1", "description": "Sha1 and Md5 hash encoder for javascript", "homepage": "https://github.com/nogsantos/hash#readme", "main": "dist/hash.js", "scripts": { "commit": "git-cz", "check-coverage": "./node_modules/.bin/nyc check-coverage --statements 50 --branches 50 --functions 50 --lines 50", "report-coverage": "cat ./coverage/lcov.info | codecov", "test": "./node_modules/.bin/mocha test/*.test.js --compilers js:babel-register", "watch:test": "npm t -- -w", "cover": "./node_modules/.bin/nyc npm t", "semantic-release": "./node_modules/.bin/semantic-release", "prebuild": "./node_modules/.bin/rimraf dist", "build": "npm-run-all --parallel build:*", "build:main": "./node_modules/.bin/babel --no-comments --out-dir dist --ignore test/ src --copy-files", "build:umd": "./node_modules/.bin/webpack --output-filename hash.umd.js", "build:umd.min": "./node_modules/.bin/webpack --output-filename hash.umd.min.js -p", "travis-deploy-once": "./node_modules/.bin/travis-deploy-once" }, "keywords": [ "Javascript", "NodeJS", "Hash", "Sha1", "Md5" ], "files": [ "dist", "README.md" ], "author": { "name": "Fabricio Nogueira", "email": "nogsantos@gmail.com", "url": "http://fabricionogueira.me" }, "license": "MIT", "bugs": { "url": "https://github.com/nogsantos/hash/issues" }, "repository": { "type": "git", "url": "https://github.com/nogsantos/hash.git" }, "dependencies": {}, "devDependencies": { "babel-cli": "6.26.0", "babel-loader": "7.1.4", "babel-minify": "0.4.3", "babel-preset-env": "1.7.0", "babel-preset-stage-2": "6.24.1", "babel-register": "6.26.0", "chai": "4.1.2", "codecov.io": "0.1.6", "commitizen": "2.10.1", "cz-conventional-changelog": "2.1.0", "ghooks": "2.0.4", "json-loader": "0.5.7", "mocha": "5.2.0", "npm-run-all": "4.1.3", "nyc": "12.0.2", "rimraf": "2.6.2", "semantic-release": "^15.6.3", "travis-deploy-once": "^5.0.1", "webpack": "4.14.0", "webpack-cli": "^3.0.8" }, "config": { "commitizen": { "path": "node_modules/cz-conventional-changelog" }, "ghooks": { "pre-commit": "npm run cover && npm run check-coverage" } }, "babel": { "presets": [ "env", "stage-2" ], "env": { "production": { "presets": [ "minify" ] } } } }