package.json
1.88 KB
1
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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
{
"_from": "js-sha256",
"_id": "js-sha256@0.9.0",
"_inBundle": false,
"_integrity": "sha512-sga3MHh9sgQN2+pJ9VYZ+1LPwXOxuBJBA5nrR5/ofPfuiJBE2hnjsaN8se8JznOmGLN2p49Pe5U/ttafcs/apA==",
"_location": "/js-sha256",
"_phantomChildren": {},
"_requested": {
"type": "tag",
"registry": true,
"raw": "js-sha256",
"name": "js-sha256",
"escapedName": "js-sha256",
"rawSpec": "",
"saveSpec": null,
"fetchSpec": "latest"
},
"_requiredBy": [
"#USER",
"/"
],
"_resolved": "https://registry.npmjs.org/js-sha256/-/js-sha256-0.9.0.tgz",
"_shasum": "0b89ac166583e91ef9123644bd3c5334ce9d0966",
"_spec": "js-sha256",
"_where": "C:\\Users\\LEEHYUNJONG\\Desktop\\오픈소스SW\\YTMT",
"author": {
"name": "Chen, Yi-Cyuan",
"email": "emn178@gmail.com"
},
"bugs": {
"url": "https://github.com/emn178/js-sha256/issues"
},
"bundleDependencies": false,
"deprecated": false,
"description": "A simple SHA-256 / SHA-224 hash function for JavaScript supports UTF-8 encoding.",
"devDependencies": {
"expect.js": "~0.3.1",
"mocha": "~2.3.4",
"nyc": "^11.3.0",
"uglify-js": "^3.1.9",
"webworker-threads": "^0.7.13"
},
"homepage": "https://github.com/emn178/js-sha256",
"keywords": [
"sha",
"sha2",
"sha224",
"sha256",
"hash",
"encryption",
"cryptography",
"HMAC"
],
"license": "MIT",
"main": "src/sha256.js",
"name": "js-sha256",
"nyc": {
"exclude": [
"tests"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/emn178/js-sha256.git"
},
"scripts": {
"build": "uglifyjs src/sha256.js -c -m eval --comments -o build/sha256.min.js",
"coveralls": "nyc report --reporter=text-lcov | coveralls",
"report": "nyc --reporter=html --reporter=text mocha tests/node-test.js",
"test": "nyc mocha tests/node-test.js"
},
"version": "0.9.0"
}