forked from nf404/crypto-api
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
111 lines (111 loc) · 2.57 KB
/
package.json
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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
{
"name": "crypto-api",
"description": "Hashing and encrypting library with no depedencies",
"version": "0.8.5",
"homepage": "https://github.com/nf404/crypto-api/",
"author": {
"name": "Aleksandr Mogilnikov",
"email": "[email protected]",
"url": "https://nf404.name/"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/nf404/crypto-api.git"
},
"bugs": {
"url": "http://github.com/nf404/crypto-api/issues"
},
"main": "index",
"directories": {
"test": "test",
"lib": "src",
"example": "example"
},
"files": [
"example",
"src",
"test",
"CHANGELOG.md",
"README.md",
"LICENSE",
"index.js",
"index.min.js",
"index.min.js.map"
],
"scripts": {
"test": "nyc mocha --recursive test/test.mjs",
"test-dev": "istanbul cover node_modules/mocha/bin/_mocha --dir coverage -- --require babel-core/register --reporter spec --recursive test/test.mjs",
"build": "webpack --progress --hide-modules && mv dist/index.js . && mv dist/index.min.js . && mv dist/index.min.js.map . && esdoc",
"coveralls": "coveralls < coverage/lcov.info",
"codacy": "codacy-coverage < coverage/lcov.info",
"codeclimate": "codeclimate-test-reporter < coverage/lcov.info"
},
"nyc": {
"require": [
"@babel/register"
],
"extension": [
".mjs"
],
"include": [
"src/**/*.mjs",
"example/**/*.mjs"
],
"reporter": [
"lcovonly"
],
"report-dir": "./coverage"
},
"dependencies": {},
"devDependencies": {
"@babel/core": "^7.1.2",
"@babel/polyfill": "^7.0.0",
"@babel/preset-env": "^7.1.0",
"@babel/register": "^7.0.0",
"babel": "^6.23.0",
"babel-loader": "^8.0.4",
"chai": "^4.2.0",
"codacy-coverage": "^3.2.0",
"codeclimate-test-reporter": "^0.5.0",
"coveralls": "^3.0.0",
"esdoc": "^1.1.0",
"esdoc-standard-plugin": "^1.0.0",
"html-webpack-externals-plugin": "^3.8.0",
"html-webpack-plugin": "^3.2.0",
"mocha": "^5.2.0",
"nyc": "^13.1.0",
"uglifyjs-webpack-plugin": "^2.0.1",
"unminified-webpack-plugin": "^2.0.0",
"webpack": "^4.24.0",
"webpack-cli": "^3.1.2"
},
"keywords": [
"hash",
"hashes",
"md2",
"md4",
"md5",
"ripemd128",
"ripemd160",
"ripemd256",
"ripemd320",
"has160",
"has-160",
"sha0",
"sha1",
"sha224",
"sha256",
"sha384",
"sha512",
"sha512/t",
"sha512/224",
"sha512/256",
"whirlpool",
"whirlpool-0",
"whirlpool-t",
"sm3",
"snefru",
"hmac"
]
}