-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
60 lines (60 loc) · 2.05 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": "@orbs-network/ton-access",
"version": "2.3.1",
"description": "Unthrottled anonymous RPC access to TON blockchain via a robust decentralized network",
"source": "lib/index.js",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"files": [
"lib/**/*"
],
"scripts": {
"test": "env mocha -r ts-node/register test/**/*.ts",
"test:v2": "env mocha -r ts-node/register test/ton-v2.ts",
"test:v4": "env mocha -r ts-node/register test/ton-v4.ts",
"cleanup": "rimraf ./lib",
"build:web:reg": "esbuild ./lib/web.js --bundle --sourcemap --target=es2015 --outfile=./dist/index.js",
"build:web:min": "esbuild ./lib/web.js --bundle --minify --target=es2015 --outfile=./dist/index.min.js",
"build:web": "rimraf ./dist && npm run build:web:reg && npm run build:web:min",
"build": "npm run lint && rimraf ./lib && tsc && npm run build:web",
"format": "prettier --write \"src/**/*.ts\"",
"lint": "tslint -p tsconfig.json",
"prepare": "npm run build",
"prepublishOnly": "npm test && npm run lint",
"preversion": "npm run lint",
"version": "npm run format && git add -A src",
"postversion": "git push && git push --tags"
},
"repository": {
"type": "git",
"url": "git+https://github.com/orbs-network/ton-access.git"
},
"author": "yuval@orbs.com",
"license": "MIT",
"bugs": {
"url": "https://github.com/orbs-network/ton-access/issues"
},
"homepage": "https://github.com/orbs-network/ton-access#readme",
"dependencies": {
"isomorphic-fetch": "^3.0.0"
},
"devDependencies": {
"@types/bn.js": "^5.1.1",
"@types/chai": "^4.3.4",
"@types/isomorphic-fetch": "^0.0.36",
"@types/mocha": "^10.0.0",
"buffer": "^6.0.3",
"chai": "^4.3.7",
"esbuild": "^0.15.14",
"mocha": "^10.1.0",
"prettier": "^2.7.1",
"rimraf": "^3.0.2",
"ton": "^12.1.3",
"ton-lite-client": "npm:@truecarry/ton-lite-client@^1.6.1",
"tonweb": "^0.0.58",
"ts-node": "^10.9.1",
"tslib": "^2.4.0",
"tslint": "^6.1.3",
"tslint-config-prettier": "^1.18.0"
}
}