forked from sambacha/solidity-pegjs-parser
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
59 lines (59 loc) · 1.55 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
{
"name": "pegjs-solidity",
"version": "1.0.2",
"description": "pegjs grammar for solidity parsing",
"main": "index.js",
"bin": {
"pegjs-solidity": "./cli.js"
},
"directories": {
"lib": "lib",
"test": "test"
},
"dependencies": {
"peggy": "^1.2.0",
"solc": "^0.6.12",
"ts-pegjs": "^1.1.1",
"yargs": "^16.1.0"
},
"devDependencies": {
"chai": "^4.3.4",
"codecov": "^3.8.3",
"eslint": "^7.32.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.24.0",
"mocha": "^9.0.3",
"nyc": "^15.1.0",
"prettier": "^2.3.2"
},
"scripts": {
"build": "npx peggy --cache -o ./build/parser.js ./solidity.pegjs",
"compile": "npx peggy -o ./build/imports_parser.js ./imports.pegjs",
"ci": "./entrypoint.sh && npx nyc --reporter=lcov npm test && npx codecov",
"tracer": "./node_modules/.bin/peggy --trace --output parser-trace.js solidity.pegjs",
"lint": "npx eslint .",
"run": "npm run build && npm run compile",
"test": "npx mocha --timeout 5000 --reporter spec"
},
"repository": {
"type": "git",
"url": "git+https://github.com/sambacha/solidity-pegjs-parser.git"
},
"keywords": [
"soliditty",
"pegjs",
"parser",
"ethereum",
"ast",
"instrument",
"testing",
"coverage"
],
"author": "SEE CONTRIBUTORS",
"license": "MIT",
"bugs": {
"url": "https://github.com/sambacha/solidity-pegjs-parser/issues"
},
"homepage": "https://github.com/sambacha/solidity-pegjs-parser#readme"
}