|
1234567891011121314151617181920212223242526272829303132333435363738394041424344454647 |
- {
- "name": "lesspass",
- "version": "6.0.0-beta.2",
- "description": "LessPass node module used to generate LessPass passwords",
- "keywords": [
- "crypto",
- "lesspass",
- "password"
- ],
- "license": "GPLv3",
- "author": "Guillaume Vincent <guillaume@oslab.fr>",
- "files": [
- "dist",
- "src",
- "index.js"
- ],
- "main": "index.js",
- "repository": "lesspass/core",
- "scripts": {
- "build": "rimraf dist && mkdir dist && browserify --standalone LessPass index.js > dist/lesspass.js",
- "prepublish": "npm test && npm run build && npm run test:node && npm run test:browser",
- "test": "mocha tests/*",
- "test:node": "npm run build && cd tests && node node.js && cd ..",
- "test:browser": "npm run build && karma start tests/karma.config.js"
- },
- "dependencies": {
- "big-integer": "^1.6.17",
- "create-hmac": "^1.1.4",
- "object-assign": "^4.1.0",
- "pbkdf2": "^3.0.9",
- "pinkie-promise": "^2.0.1",
- "unibabel": "^2.1.3"
- },
- "devDependencies": {
- "browserify": "^13.1.1",
- "chai": "^3.5.0",
- "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"
- }
- }
|