{ "name": "lesspass", "version": "5.2.2", "description": "LessPass node module used to generate LessPass passwords", "keywords": [ "crypto", "lesspass", "password" ], "license": "GPLv3", "author": "Guillaume Vincent ", "files": [ "index.js" ], "main": "index.js", "repository": "lesspass/core", "scripts": { "build": "rimraf lib && mkdir lib && browserify --standalone LessPass index.js > lib/lesspass.js && gulp", "prepublish": "npm test && npm run build && npm run test:node && npm run test:browser", "test": "mocha --require ./tests/helper.js tests/*", "test:node": "npm run build && cd tests && node node.js && cd ..", "test:webcrypto": "karma start tests/karma.webcrypto.config.js", "test:browser": "npm run build && karma start tests/karma.config.js" }, "dependencies": { "big-integer": "^1.6.17", "bluebird": "^3.4.6", "create-hmac": "^1.1.4", "object-assign": "^4.1.0", "pbkdf2": "^3.0.9", "unibabel": "^2.1.3" }, "devDependencies": { "browserify": "^13.1.1", "chai": "^3.5.0", "gulp": "^3.9.1", "gulp-concat": "^2.6.1", "gulp-rename": "^1.2.2", "karma": "^1.3.0", "karma-chai": "^0.1.0", "karma-chrome-launcher": "^2.0.0", "karma-firefox-launcher": "^1.0.0", "karma-mocha": "^1.3.0", "karma-phantomjs-launcher": "^1.0.2", "mocha": "^3.1.2", "phantomjs": "^2.1.7", "rimraf": "^2.5.4" } }