You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

package.json 589 B

12345678910111213141516171819202122
  1. {
  2. "name": "lesspass-fingerprint",
  3. "version": "1.0.0",
  4. "description": "LessPass node module used to get fingerprint for 256 bytes string",
  5. "license": "GPL-3.0",
  6. "author": "Guillaume Vincent <guillaume@oslab.fr>",
  7. "files": [
  8. "src"
  9. ],
  10. "main": "src/index.js",
  11. "browser": {
  12. "./src/hmac.js": "./src/hmac.browser.js"
  13. },
  14. "scripts": {
  15. "test": "npm run test:unit && npm run test:browser",
  16. "test:unit": "mocha test --recursive",
  17. "test:browser": "karma start test/karma.conf.js"
  18. },
  19. "dependencies": {
  20. "lesspass-crypto": "file:../lesspass-crypto"
  21. }
  22. }