-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 loc) · 1.53 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
{
"name": "turtlecoin-cryptonote-util",
"version": "0.0.8",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"gypfile": true,
"author": {
"name": "LucasJones",
"email": "[email protected]"
},
"contributors": [
"Brandon Lehmann <[email protected]>"
],
"engines": {
"node": ">=10"
},
"engineStrict": true,
"license": "GPL-3.0",
"repository": {
"type": "git",
"url": "https://github.com/turtlecoin/node-cryptonote-util.git"
},
"scripts": {
"docs": "./node_modules/.bin/typedoc && touch docs/.nojekyll && git restore docs/CNAME",
"build-typescript": "./node_modules/.bin/tsc",
"install": "prebuild-install --download --verbose || node-gyp rebuild",
"test-node": "./node_modules/.bin/mocha --timeout 60000 --require ts-node/register tests/test.ts",
"rebuild-all": "node-gyp clean && node-gyp configure && node-gyp build && npm run build-typescript",
"test": "npm run rebuild-all && npm run test-node",
"prepublishOnly": "npm run test"
},
"dependencies": {
"bindings": "^1.5.0",
"nan": "^2.14.1",
"prebuild-install": "^5.3.5",
"safe-buffer": "^5.2.1"
},
"keywords": [
"cryptonight",
"cryptonote"
],
"devDependencies": {
"@types/mocha": "^8.0.2",
"@types/node": "^14.0.27",
"mocha": "^8.1.1",
"ts-node": "^8.10.2",
"typedoc": "^0.18.0",
"typescript": "^3.9.7"
}
}