forked from derogold/turtlecoin-crypto
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
51 lines (51 loc) · 1.66 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
{
"name": "turtlecoin-crypto",
"version": "4.0.9",
"description": "Node C++ Addon for TurtleCoin Cryptographic Functions",
"types": "dist/index.d.ts",
"main": "dist/index.js",
"scripts": {
"build-native": "run-script-os",
"build-native:win32": "build_js.sh",
"build-native:default": "./build_js.sh",
"build-typescript": "./node_modules/.bin/tsc",
"docs": "./node_modules/.bin/typedoc && touch docs/.nojekyll",
"install": "prebuild-install --download --verbose || node-gyp rebuild",
"prepublishOnly": "npm run build-typescript && npm run build-native && npm run test",
"style": "./node_modules/.bin/tslint -c tslint.json --project .",
"fix-style": "./node_modules/.bin/tslint -c tslint.json --project . --fix",
"test": "npm run test-node && npm run test-js",
"test-all": "npm run prepublishOnly && npm test",
"test-js": "env FORCE_JS=1 mocha tests/crypto.js",
"test-node": "mocha tests/crypto.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/wrkzcoin/turtlecoin-crypto#add_upx_tx_pow"
},
"bugs": {
"url": "https://github.com/wrkzcoin/turtlecoin-crypto/issues"
},
"engines": {
"node": ">=6"
},
"engineStrict": true,
"homepage": "https://crypto.turtlecoin.dev/",
"author": "The TurtleCoin Developers",
"license": "GPL-3.0",
"dependencies": {
"bindings": "^1.5.0",
"js-sha3": "^0.8.0",
"nan": "^2.14.1",
"prebuild-install": "^5.3.3",
"typescript": "^3.8.3"
},
"devDependencies": {
"@types/node": "^13.13.2",
"electron-rebuild": "^1.11.0",
"mocha": "^6.2.3",
"run-script-os": "^1.1.1",
"tslint": "^5.20.1",
"typedoc": "^0.16.11"
}
}