-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
51 lines (51 loc) · 1.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
{
"name": "@tact-lang/ton-jest",
"version": "0.0.3",
"main": "dist/index.js",
"repository": "https://github.com/tact-lang/ton-jest.git",
"author": "Steve Korshakov <steve@korshakov.com>",
"description": "Jest matchers for TON contracts",
"license": "MIT",
"files": [
"dist",
"src",
"serializers.js"
],
"scripts": {
"build": "tsc --declaration",
"test": "jest",
"clean": "rm -fr dist",
"release": "yarn clean && yarn build && release-it --npm.yarn1"
},
"devDependencies": {
"@release-it/keep-a-changelog": "^3.1.0",
"@types/jest": "^29.5.0",
"@types/node": "^18.15.5",
"jest": "^29.5.0",
"release-it": "^15.5.1",
"@ton/ton": "^13.5.1",
"@ton/core": "^0.49.2",
"@ton/crypto": "^3.2.0",
"typescript": "^5.0.2",
"ts-jest": "^29.0.5",
"ts-node": "^10.9.1"
},
"peerDependencies": {
"@ton/core": ">=0.49.2",
"@ton/crypto": "^3.2.0"
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
},
"release-it": {
"github": {
"release": true
},
"plugins": {
"@release-it/keep-a-changelog": {
"filename": "CHANGELOG.md"
}
}
}
}