-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
37 lines (37 loc) · 921 Bytes
/
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
{
"name": "node-cryptonight-lite",
"version": "1.0.1",
"description": "node bindings for cryptonight-lite hashing",
"main": "index.js",
"gypfile": true,
"scripts": {
"lint": "standard",
"rebuild": "node-gyp rebuild",
"test": "standard && jest"
},
"keywords": [
"cryptonight-lite",
"hash",
"aeon",
"native"
],
"author": "Excitable Aardvark <[email protected]>",
"license": "BSDv3",
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/ExcitableAardvark/node-cryptonight-lite.git"
},
"bugs": {
"url": "https://github.com/ExcitableAardvark/node-cryptonight-lite/issues"
},
"homepage": "https://github.com/ExcitableAardvark/node-cryptonight-lite#readme",
"dependencies": {
"bindings": "^1.3.0",
"nan": "^2.8.0",
"node-gyp": "^3.6.2"
},
"devDependencies": {
"jest": "^22.0.4",
"standard": "^10.0.3"
}
}