Subversion Repositories oidplus

Rev

Rev 1419 | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
597 daniel-mar 1
{
2
  "name": "js-sha3",
1441 daniel-mar 3
  "version": "0.9.3",
597 daniel-mar 4
  "description": "A simple SHA-3 / Keccak / Shake hash function for JavaScript supports UTF-8 encoding.",
5
  "main": "src/sha3.js",
6
  "devDependencies": {
7
    "expect.js": "~0.3.1",
1395 daniel-mar 8
    "mocha": "~10.2.0",
9
    "nyc": "^15.1.0",
10
    "tiny-worker": "^2.3.0",
11
    "uglify-js": "^3.1.9"
597 daniel-mar 12
  },
13
  "scripts": {
14
    "test": "nyc mocha tests/node-test.js",
15
    "report": "nyc --reporter=html --reporter=text mocha tests/node-test.js",
16
    "coveralls": "nyc report --reporter=text-lcov | coveralls",
17
    "build": "uglifyjs src/sha3.js -c -m --comments --output build/sha3.min.js"
18
  },
19
  "repository": {
20
    "type": "git",
21
    "url": "https://github.com/emn178/js-sha3.git"
22
  },
23
  "keywords": [
24
    "sha3",
25
    "keccak",
26
    "shake",
27
    "cshake",
28
    "kmac",
29
    "hash",
30
    "encryption",
31
    "cryptography",
32
    "HMAC"
33
  ],
34
  "license": "MIT",
35
  "author": "Chen, Yi-Cyuan <emn178@gmail.com>",
36
  "homepage": "https://github.com/emn178/js-sha3",
37
  "bugs": {
38
    "url": "https://github.com/emn178/js-sha3/issues"
39
  },
40
  "nyc": {
41
    "exclude": [
42
      "tests"
43
    ]
44
  }
45
}