-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
74 lines (74 loc) · 1.93 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
{
"name": "pegjs-solidity",
"version": "1.2.1",
"type": "module",
"description": "pegjs grammar for solidity parsing with esm/commonjs and browser umd support",
"main": "index.js",
"files": [
"lib/**",
"dist/**"
],
"bin": {
"pegjs-solidity": "./cli.js"
},
"directories": {
"lib": "lib",
"src": "src"
},
"dependencies": {
"peggy": "2.0.0",
"pegjs-backtrace": "^0.2.1",
"solc": "^0.6.12 | ^0.7.0 | ^0.8.0",
"yargs": "^16.1.0"
},
"resolutions": {
"peggy": "2.0.0"
},
"devDependencies": {
"@types/node": "^16",
"@typescript-eslint/eslint-plugin": "^5.27.0",
"@typescript-eslint/parser": "^5.27.0",
"chai": "^4.3.4",
"codecov": "^3.8.3",
"eslint": "^8.16.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.24.0",
"mocha": "^9.0.3",
"nyc": "^15.1.0",
"prettier": "^2.3.2",
"shx": "^0.3.4",
"ts-pegjs": "1.2.2",
"tslib": "^2.4.0",
"typescript": "4.6.4"
},
"scripts": {
"build": "npx peggy --cache -o ./src/parser.js ./solidity.pegjs",
"compile": "npx peggy -o ./src/imports_parser.js ./imports.pegjs",
"ci": "shx ./build.sh && npx nyc --reporter=lcov npm test && npx codecov",
"tracer": "./node_modules/.bin/peggy --trace --output parser-trace.js solidity.pegjs",
"lint": "npx eslint . --fix",
"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": [
"solidity",
"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"
}