This repository has been archived by the owner on Dec 29, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
60 lines (60 loc) · 1.58 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": "ton3-core",
"version": "0.0.21",
"description": "TON low-level API tools",
"main": "./dist/index.js",
"scripts": {
"build": "tsc -p tsconfig.build.json",
"test": "mocha './test/**/*.test.ts' --require ts-node/register",
"coverage": "nyc --all mocha './test/**/*.test.ts' --require ts-node/register",
"build:doc": "typedoc"
},
"author": "TonStack",
"license": "MIT",
"devDependencies": {
"@istanbuljs/nyc-config-typescript": "^1.0.2",
"@types/chai": "^4.3.0",
"@types/mocha": "^9.1.1",
"@types/node": "^18.7.6",
"@types/sinon": "^10.0.11",
"chai": "^4.3.6",
"coveralls": "^3.1.1",
"eslint": "^8.10.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-airbnb-typescript": "^16.1.0",
"eslint-import-resolver-typescript": "^2.5.0",
"eslint-plugin-import": "^2.25.4",
"mocha": "^9.2.1",
"nyc": "^15.1.0",
"sinon": "^13.0.1",
"ts-node": "^10.7.0",
"typedoc": "^0.22.13",
"typedoc-plugin-markdown": "^3.11.14",
"typedoc-plugin-merge-modules": "^3.1.0",
"typescript": "^4.6.2"
},
"dependencies": {
"@noble/hashes": "1.1.2",
"decimal.js": "10.3.1",
"tweetnacl": "1.0.3"
},
"types": "./dist/index.d.ts",
"directories": {
"doc": "docs",
"test": "test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/tonstack/ton3-core.git"
},
"keywords": [
"ton",
"boc",
"cell",
"blockchain"
],
"bugs": {
"url": "https://github.com/tonstack/ton3-core/issues"
},
"homepage": "https://github.com/tonstack/ton3-core#readme"
}