forked from ooosbkf/turtlecoin-utils
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
63 lines (63 loc) · 1.86 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
61
62
63
{
"name": "turtlecoin-utils",
"version": "2.0.0",
"description": "A Node.js collection of utilities useful for TurtleCoin developers",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist/*",
"config.json"
],
"engines": {
"node": ">=10"
},
"scripts": {
"build": "./node_modules/.bin/tsc",
"docs": "./node_modules/.bin/typedoc && touch docs/.nojekyll",
"prepare": "npm run build",
"prepublishOnly": "npm test && npm run docs",
"style": "./node_modules/.bin/tslint -c tslint.json --project .",
"fix-style": "./node_modules/.bin/tslint -c tslint.json --fix --project .",
"test": "npm run style && npm run build && npm run test-node && npm run test-js",
"mocha": "./node_modules/.bin/mocha",
"test-node": "npm run mocha",
"test-js": "env FORCE_JS=1 npm run mocha"
},
"keywords": [
"TurtleCoin",
"Utilities"
],
"repository": {
"type": "git",
"url": "git+https://github.com/turtlecoin/turtlecoin-utils.git"
},
"homepage": "https://utils.turtlecoin.dev",
"bugs": {
"url": "https://github.com/turtlecoin/turtlecoin-utils/issues"
},
"author": "Brandon Lehmann <[email protected]>",
"contributors": [
"zpalmtree <[email protected]>"
],
"license": "GPL-3.0",
"dependencies": {
"aes-js": "^3.1.2",
"big-integer": "^1.6.48",
"bytestream-helper": "0.0.8",
"get-random-values": "^1.2.0",
"numeral": "^2.0.6",
"secure-random-string": "^1.1.3",
"turtlecoin-base58": "^0.0.6",
"wrkzcoin-crypto": "https://github.com/wrkzcoin/wrkzcoin-crypto#cn_trtl_tx_pow",
"turtlecoin-mnemonics": "^0.0.6"
},
"devDependencies": {
"@types/aes-js": "^3.1.1",
"@types/node": "^13.13.6",
"@types/numeral": "0.0.26",
"mocha": "^7.1.2",
"tslint": "^6.1.2",
"typedoc": "^0.17.6",
"typescript": "^3.9.2"
}
}