-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 894 Bytes
/
package.json
File metadata and controls
37 lines (37 loc) · 894 Bytes
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
{
"name": "node-cryptonight",
"version": "1.3.0",
"description": "node bindings for cryptonight hashing",
"main": "index.js",
"gypfile": true,
"scripts": {
"lint": "standard",
"rebuild": "node-gyp rebuild",
"test": "standard && jest"
},
"keywords": [
"cryptonight",
"hash",
"monero",
"native"
],
"author": "Excitable Aardvark <excitableaardvark@tutanota.de>",
"license": "BSDv3",
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/ExcitableAardvark/node-cryptonight.git"
},
"bugs": {
"url": "https://github.com/ExcitableAardvark/node-cryptonight/issues"
},
"homepage": "https://github.com/ExcitableAardvark/node-cryptonight#readme",
"dependencies": {
"bindings": "^1.5.0",
"nan": "^2.14.0",
"node-gyp": "^4.0.0"
},
"devDependencies": {
"jest": "^24.7.1",
"standard": "^12.0.1"
}
}