forked from nowarp/misti
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
106 lines (106 loc) · 2.92 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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
{
"name": "@nowarp/misti",
"version": "0.4.2",
"repository": {
"type": "git",
"url": "git+https://github.com/nowarp/misti.git"
},
"homepage": "https://nowarp.io/tools/misti/",
"bugs": "https://github.com/nowarp/misti/issues",
"description": "TON Static Analyzer",
"keywords": [
"static analysis",
"souffle",
"ton",
"blockchain",
"smart-contracts"
],
"author": "Georgiy Komarov <[email protected]>",
"license": "Apache-2.0",
"scripts": {
"clean": "rm -fr dist docs/*",
"build": "tsc && cp -R src/detectors/templates dist/detectors/",
"gen": "ts-node scripts/genVersions.ts",
"test": "jest",
"benchmark": "ts-node benchmarks/detectors.ts",
"lint": "eslint src",
"knip": "knip",
"fmt": "prettier --check src test examples",
"spell": "cspell \"**\" --no-progress --exclude \"dist/**\" --exclude \"node_modules/**\" --exclude \"tags/**\" --exclude \"docs/**\"",
"docs": "yarn typedoc --out docs/api --entryPointStrategy expand src",
"detector-docs": "ts-node ./scripts/generateDetectorDocs.ts",
"fix-all": "yarn fmt --write && yarn lint --fix",
"test-all": "yarn spell && yarn knip && yarn fmt && yarn lint && yarn test",
"misti": "ts-node src/main.ts",
"release": "yarn release-it"
},
"files": [
"dist/**/*",
"src/**/*",
"bin/**/*"
],
"main": "./dist/main.js",
"bin": {
"misti": "./bin/misti"
},
"dependencies": {
"@nowarp/souffle": "^0.1.2",
"@tact-lang/compiler": "~1.5.1",
"@ton/core": "~0.59.0",
"@types/benchmark": "^2.1.5",
"@types/fs-extra": "^11.0.4",
"@types/json-bigint": "^1.0.4",
"benchmark": "^2.1.4",
"commander": "^12.0.0",
"fs-extra": "^11.2.0",
"json-bigint": "^1.0.0",
"ohm-js": "^17.1.0",
"zod": "^3.22.4"
},
"devDependencies": {
"@release-it/keep-a-changelog": "^5.0.0",
"@types/jest": "^29.2.3",
"@types/node": "^20.12.4",
"@typescript-eslint/eslint-plugin": "^7.0.4",
"@typescript-eslint/parser": "^7.0.4",
"cspell": "^8.12.1",
"eslint": "^8.57.0",
"eslint-plugin-import": "^2.30.0",
"eslint-plugin-unused-imports": "^4.1.4",
"jest": "^29.7.0",
"knip": "^5.30.2",
"prettier": "^3.2.5",
"release-it": "^17.6.0",
"ts-jest": "^29.0.3",
"ts-node": "^10.9.1",
"typedoc": "^0.26.5",
"typescript": "^4.9.3"
},
"prettier": {
"semi": true,
"printWidth": 80
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
},
"release-it": {
"hooks": {
"before:release": "MISTI_RELEASE=1 yarn clean && yarn gen && yarn build",
"after:bump": "MISTI_RELEASE=1 yarn gen && yarn build"
},
"github": {
"release": true
},
"plugins": {
"@release-it/keep-a-changelog": {
"filename": "CHANGELOG.md",
"addUnreleased": true
}
}
},
"packageManager": "[email protected]",
"engines": {
"node": ">=22.0.0"
}
}