forked from SkinnyPeteTheGiraffe/n-multi-hashing
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
52 lines (52 loc) · 1.33 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
{
"name": "n-multi-hashing",
"version": "1.0.8",
"description": "A re-write of the Node Multi Hashing library, which provides Javascript bindings for C/C++ based hashing algorithms.",
"main": "dist/src/index.js",
"types": "dist/src/index.d.ts",
"scripts": {
"test": "jest",
"clean": "rm -r ./dist",
"build": "tsc && yarn build:binaries && cp -r ./build ./dist/build",
"build:binaries": "node-gyp clean && node-gyp configure && node-gyp build",
"build:debug": "node-gyp clean && node-gyp configure && node-gyp build --debug"
},
"keywords": [
"hashing",
"typescript",
"POW",
"crypto",
"x16r",
"kawpow",
"scrypt",
"sha256",
"c11",
"lyra2z",
"quark",
"x11",
"argon2"
],
"author": "Notorious",
"license": "MIT",
"files": [
"dist/**/*"
],
"repository": "https://github.com/SkinnyPeteTheGiraffe/n-multi-hashing",
"homepage": "https://github.com/SkinnyPeteTheGiraffe/n-multi-hashing",
"devDependencies": {
"@types/bindings": "^1.5.0",
"@types/jest": "^26.0.23",
"jest": "^27.0.4",
"jest-junit": "^12.1.0",
"nodemon": "^2.0.7",
"prettier": "^2.3.0",
"ts-jest": "^27.0.2",
"ts-node": "^10.0.0",
"ttypescript": "^1.5.12",
"typescript": "^4.3.2"
},
"dependencies": {
"bindings": "^1.5.0",
"nan": "^2.14.2"
}
}