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