-
Notifications
You must be signed in to change notification settings - Fork 30
/
package.json
64 lines (64 loc) · 2.51 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
{
"name": "eth-scribble",
"version": "0.7.8",
"description": "A Solidity runtime verification tool for property based testing",
"keywords": [],
"files": [
"dist"
],
"main": "dist/index.js",
"types": "dist/index.d.ts",
"bin": {
"scribble": "dist/bin/scribble.js"
},
"dependencies": {
"big-integer": "^1.6.52",
"command-line-args": "^5.2.1",
"command-line-usage": "^7.0.1",
"findup-sync": "^5.0.0",
"fs-extra": "^11.2.0",
"logplease": "^1.2.15",
"semver": "^7.6.0",
"solc-typed-ast": "^18.2.4",
"src-location": "^1.1.0",
"yaml": "^1.10.2"
},
"scripts": {
"clean": "rm -rf dist/*",
"build-expr-parser": "tspegjs -o src/spec-lang/expr_parser.ts --custom-header-file src/spec-lang/expr_parser_header.ts --allowed-start-rules Annotation,Expression --cache src/spec-lang/expr_grammar.pegjs",
"build-import-parser": "tspegjs -o src/rewriter/import_directive_parser.ts --custom-header-file src/rewriter/import_directive_header.ts --cache src/rewriter/import_directive.pegjs",
"build-parsers": "npm run build-expr-parser && npm run build-import-parser",
"transpile": "tsc",
"build": "npm run clean && npm run build-parsers && npm run transpile && cp -r stdlib/ dist/stdlib/ && chmod u+x dist/bin/scribble.js",
"test": "NODE_OPTIONS='--max-old-space-size=2048' nyc mocha",
"test:ci": "NODE_OPTIONS='--max-old-space-size=2048' nyc mocha --parallel --jobs 4",
"coverage": "nyc report",
"lint": "eslint src/ test/ --ext=ts",
"lint:fix": "eslint src/ test/ --ext=ts --fix",
"prepare": "npm run build"
},
"devDependencies": {
"@ethereumjs/vm": "^7.2.1",
"@types/bn.js": "^5.1.5",
"@types/fs-extra": "^11.0.4",
"@types/mocha": "^10.0.6",
"@types/node": "^20.11.30",
"@types/semver": "^7.5.8",
"@typescript-eslint/eslint-plugin": "^7.3.1",
"@typescript-eslint/parser": "^7.3.1",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.3",
"ethereumjs-abi": "^0.6.8",
"expect": "^29.7.0",
"mocha": "^10.3.0",
"nyc": "^15.1.0",
"peggy": "^2.0.1",
"prettier": "^3.2.5",
"ts-node": "^10.9.2",
"ts-pegjs": "^3.1.0",
"typescript": "^5.2.2"
},
"repository": "https://github.com/ConsenSys/scribble.git",
"license": "SEE LICENSE IN <LICENSE>"
}