package.json 2.6 KB

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