forked from turtlecoin/turtlecoin-crypto
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
60 lines (60 loc) · 2.16 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
52
53
54
55
56
57
58
59
60
{
"name": "kryptokrona-crypto",
"version": "1.0.1",
"description": "Node C++ Addon for Kryptokrona 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 && git restore docs/CNAME",
"install": "prebuild-install --download --verbose || node-gyp rebuild",
"prepublishOnly": "npm run build-typescript && npm run build-native && npm run test",
"style": "./node_modules/.bin/eslint typescript/*.ts tests/crypto.ts",
"fix-style": "./node_modules/.bin/eslint --fix typescript/*.ts tests/crypto.ts",
"test": "npm run test-node && npm run test-js",
"test-all": "npm run prepublishOnly && npm test",
"test-js": "env FORCE_JS=1 ./node_modules/.bin/mocha --timeout 60000 --require ts-node/register tests/crypto.ts",
"test-node": "./node_modules/.bin/mocha --timeout 60000 --require ts-node/register tests/crypto.ts",
"benchmark": "node tests/benchmark.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/kryptokrona/kryptokrona-crypto.git"
},
"bugs": {
"url": "https://github.com/kryptokrona/kryptokrona-crypto/issues"
},
"engines": {
"node": ">=10"
},
"engineStrict": true,
"homepage": "https://kryptokrona.se",
"author": "The Kryptokrona Developers",
"license": "GPL-3.0",
"dependencies": {
"bindings": "^1.5.0",
"js-sha3": "^0.8.0",
"nan": "^2.14.1",
"prebuild-install": "^5.3.5"
},
"devDependencies": {
"@types/mocha": "^8.0.2",
"@types/node": "^14.0.27",
"@typescript-eslint/eslint-plugin": "^3.9.0",
"@typescript-eslint/parser": "^3.9.0",
"eslint": "^7.7.0",
"eslint-config-standard": "^14.1.1",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1",
"mocha": "^8.1.1",
"run-script-os": "^1.1.1",
"ts-node": "^8.10.2",
"typedoc": "^0.18.0",
"typescript": "^3.9.7"
}
}