forked from ton-blockchain/minter-contract
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
75 lines (75 loc) · 2.18 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
64
65
66
67
68
69
70
71
72
73
74
75
{
"name": "@ton-defi.org/jetton-deployer-contracts",
"description": "Javascript library for deploying Jettons on the TON blockchain",
"version": "0.0.2",
"license": "MIT",
"author": "ton-defi.org",
"repository": {
"type": "git",
"url": "git+https://github.com/ton-defi-org/jetton-deployer-contracts.git"
},
"bugs": {
"url": "https://github.com/ton-defi-org/jetton-deployer-contracts/issues"
},
"homepage": "https://github.com/ton-defi-org/jetton-deployer-contracts#readme",
"scripts": {
"prettier": "npx prettier --write '{test,contracts,build}/**/*.{ts,js,json}'",
"test": "mocha --exit test/**/*.spec.ts",
"test:coverage": "nyc mocha --exit test/**/*.spec.ts",
"test:watch": "mocha --watch --watch-files test/**/*.ts,lib/**/*.ts,contracts/**/*.ts test/**/*.spec.ts",
"build": "ts-node ./build/_build.ts",
"deploy": "ts-node ./build/_deploy.ts",
"deploy:testnet": "ts-node ./build/_deploy.ts",
"postinstall": "ts-node ./build/_setup.ts"
},
"devDependencies": {
"@swc/core": "^1.2.177",
"@types/bn.js": "^5.1.0",
"@types/chai": "^4.3.0",
"@types/chai-as-promised": "^7.1.5",
"@types/mocha": "^9.1.1",
"@types/node": "^17.0.41",
"@types/semver": "^7.3.9",
"@typescript-eslint/eslint-plugin": "^5.27.0",
"@typescript-eslint/parser": "^5.27.0",
"@vercel/ncc": "^0.34.0",
"chai": "^4.3.4",
"chai-as-promised": "^7.1.1",
"chai-bn": "^0.3.1",
"eslint": "^8.16.0",
"fast-glob": "^3.2.11",
"mocha": "^10.0.0",
"nyc": "^15.1.0",
"prando": "^6.0.1",
"prettier": "2.6.2",
"sinon": "^14.0.0",
"sinon-chai": "^3.7.0",
"ton-contract-executor": "^0.5.0",
"ts-node": "^10.4.0",
"ts-sinon": "^2.0.2",
"typescript": "^4.5.4",
"axios": "0.25.0"
},
"prettier": {
"printWidth": 100
},
"mocha": {
"require": [
"chai",
"ts-node/register"
],
"timeout": 20000
},
"engines": {
"node": ">=16.0.0"
},
"dependencies": {
"@aws-crypto/sha256-js": "^2.0.1",
"axios-request-throttle": "^1.0.0",
"dotenv": "^16.0.0",
"semver": "^7.3.7",
"ton": "^11.16.0",
"ton-contracts": "^3.1.0",
"ton-crypto": "^3.1.0"
}
}