forked from JSKitty/scc-js
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
74 lines (74 loc) · 1.53 KB
/
package.json
File metadata and controls
74 lines (74 loc) · 1.53 KB
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
64
65
66
67
68
69
70
71
72
73
74
{
"name": "@stakecubecoin/scc-js",
"version": "2.1.0",
"description": "A JavaScript implementation for SCC written in TypeScript",
"source": "src/index.ts",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"files": [
"lib/**/*",
"README.md"
],
"directories": {
"lib": "./lib",
"src": "./src",
"test": "./src"
},
"engines": {
"npm": ">=7.0.0",
"node": ">=15.0.0"
},
"scripts": {
"test": "mocha --config mocharc.json",
"lint": "eslint . --ext .ts",
"format": "prettier --write \"**/*.+(js|ts|json)\"",
"build": "tsc",
"doc": "npx typedoc src"
},
"repository": "stakecube/scc-js",
"keywords": [
"stakecube",
"stakecube.net",
"sc",
"stakecubecoin",
"webwallet",
"core",
"transactions",
"addresses",
"keys",
"crypto",
"cryptography"
],
"authors": [
{
"name": "Luke Larsen"
},
{
"name": "JSKitty"
},
{
"name": "SeqSEE"
}
],
"license": "MIT",
"bugs": {
"url": "https://github.com/stakecube/scc-js/issues"
},
"homepage": "https://github.com/stakecube/scc-js#readme",
"dependencies": {
"@noble/secp256k1": "^1.5.5",
"big-integer": "^1.6.51"
},
"devDependencies": {
"@types/mocha": "^10.0.1",
"@types/node": "^20.6.4",
"@typescript-eslint/eslint-plugin": "^6.7.2",
"@typescript-eslint/parser": "^6.7.2",
"eslint": "^8.50.0",
"mocha": "^10.2.0",
"prettier": "^3.0.3",
"ts-node": "^10.9.1",
"typedoc": "^0.25.1",
"typescript": "^5.2.2"
}
}