-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
47 lines (47 loc) · 1.07 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
{
"name": "ton.js",
"version": "0.1.7",
"description": "TON Lite client implementation in Node.js (using libtonlibjson)",
"main": "build/index.js",
"types": "build/index.d.js",
"directories": {
"lib": "lib"
},
"dependencies": {
"@types/crc": "^3.4.0",
"assert": "^2.0.0",
"crc": "^3.8.0",
"fast-crc32c": "^2.0.0",
"ffi-napi": "^2.4.6",
"ref-napi": "^1.4.3",
"typescript": "^3.8.2"
},
"devDependencies": {
"@types/chai": "^4.2.9",
"@types/mocha": "^7.0.1",
"chai": "^4.2.0",
"mocha": "^7.1.0",
"ts-node": "^8.6.2"
},
"scripts": {
"build": "tsc",
"start": "tsc && node build/index.js",
"test": "mocha -r ts-node/register src/**/*.test.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/dkaraush/ton.js.git"
},
"keywords": [
"nodejs",
"ton",
"blockchain",
"client"
],
"author": "[email protected]",
"license": "ISC",
"bugs": {
"url": "https://github.com/dkaraush/ton.js/issues"
},
"homepage": "https://github.com/dkaraush/ton.js#readme"
}