package.json 2.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394
  1. {
  2. "_args": [
  3. [
  4. "tweetnacl@0.14.5",
  5. "E:\\vscode\\UseStudio.Desktop"
  6. ]
  7. ],
  8. "_from": "tweetnacl@~0.14.0",
  9. "_id": "tweetnacl@0.14.5",
  10. "_inBundle": false,
  11. "_integrity": "sha1-WuaBd/GS1EViadEIr6k/+HQ/T2Q=",
  12. "_location": "/tweetnacl",
  13. "_phantomChildren": {},
  14. "_requested": {
  15. "type": "version",
  16. "registry": true,
  17. "raw": "tweetnacl@0.14.5",
  18. "name": "tweetnacl",
  19. "escapedName": "tweetnacl",
  20. "rawSpec": "0.14.5",
  21. "saveSpec": null,
  22. "fetchSpec": "0.14.5"
  23. },
  24. "_requiredBy": [
  25. "/",
  26. "/bcrypt-pbkdf",
  27. "/sshpk"
  28. ],
  29. "_resolved": "https://registry.npmjs.org/tweetnacl/-/tweetnacl-0.14.5.tgz",
  30. "_shasum": "5ae68177f192d4456269d108afa93ff8743f4f64",
  31. "_spec": "0.14.5",
  32. "_where": "E:\\vscode\\UseStudio.Desktop",
  33. "author": {
  34. "name": "TweetNaCl-js contributors"
  35. },
  36. "browser": {
  37. "buffer": false,
  38. "crypto": false
  39. },
  40. "bugs": {
  41. "url": "https://github.com/dchest/tweetnacl-js/issues"
  42. },
  43. "bundleDependencies": false,
  44. "deprecated": false,
  45. "description": "Port of TweetNaCl cryptographic library to JavaScript",
  46. "devDependencies": {
  47. "browserify": "^13.0.0",
  48. "eslint": "^2.2.0",
  49. "faucet": "^0.0.1",
  50. "tap-browser-color": "^0.1.2",
  51. "tape": "^4.4.0",
  52. "tape-run": "^2.1.3",
  53. "tweetnacl-util": "^0.13.3",
  54. "uglify-js": "^2.6.1"
  55. },
  56. "directories": {
  57. "test": "test"
  58. },
  59. "homepage": "https://tweetnacl.js.org",
  60. "keywords": [
  61. "crypto",
  62. "cryptography",
  63. "curve25519",
  64. "ed25519",
  65. "encrypt",
  66. "hash",
  67. "key",
  68. "nacl",
  69. "poly1305",
  70. "public",
  71. "salsa20",
  72. "signatures"
  73. ],
  74. "license": "Unlicense",
  75. "main": "nacl-fast.js",
  76. "name": "tweetnacl",
  77. "repository": {
  78. "type": "git",
  79. "url": "git+https://github.com/dchest/tweetnacl-js.git"
  80. },
  81. "scripts": {
  82. "bench": "node test/benchmark/bench.js",
  83. "build": "uglifyjs nacl.js -c -m -o nacl.min.js && uglifyjs nacl-fast.js -c -m -o nacl-fast.min.js",
  84. "build-test-browser": "browserify test/browser/init.js test/*.js | uglifyjs -c -m -o test/browser/_bundle.js 2>/dev/null && browserify test/browser/init.js test/*.quick.js | uglifyjs -c -m -o test/browser/_bundle-quick.js 2>/dev/null",
  85. "lint": "eslint nacl.js nacl-fast.js test/*.js test/benchmark/*.js",
  86. "test": "npm run test-node-all && npm run test-browser",
  87. "test-browser": "NACL_SRC=${NACL_SRC:='nacl.min.js'} && npm run build-test-browser && cat $NACL_SRC test/browser/_bundle.js | tape-run | faucet",
  88. "test-node": "tape test/*.js | faucet",
  89. "test-node-all": "make -C test/c && tape test/*.js test/c/*.js | faucet"
  90. },
  91. "types": "nacl.d.ts",
  92. "version": "0.14.5"
  93. }