-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 1.11 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
{
"name": "node-cryptonight-old-hardware",
"version": "1.3.0",
"description": "node bindings for cryptonight hashing on old hardware that does not support aes extensions",
"main": "index.js",
"gypfile": true,
"scripts": {
"lint": "standard",
"rebuild": "node-gyp rebuild",
"test": "standard && jest",
"clean": "rm -rf build node_modules"
},
"keywords": [
"cryptonight",
"hash",
"monero",
"native",
"aesni",
"aes"
],
"author": {
"name": "Gerik Bonaert",
"email": "dev@keyhash.eu"
},
"license": "BSD-3-Clause",
"repository": {
"type": "git",
"url": "https://github.com/keyhash/node-cryptonight-old-hardware.git"
},
"bugs": {
"url": "https://github.com/keyhash/node-cryptonight-old-hardware/issues"
},
"homepage": "https://github.com/keyhash/node-cryptonight-old-hardware#readme",
"dependencies": {
"bindings": "*",
"nan": "^2.14.0"
},
"devDependencies": {
"jest": "^24.9.0",
"standard": "^14.0.1"
}
}