forked from duaraghav8/solparse
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
executable file
·48 lines (48 loc) · 1.16 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
{
"name": "solparse",
"version": "2.2.8",
"description": "PEG.js Solidity parser for Javascript",
"main": "index.js",
"scripts": {
"prepublish": "npm run build",
"build": "mkdir -p ./build && pegjs --cache -o ./build/parser.js ./solidity.pegjs && pegjs -o ./build/imports_parser.js ./imports.pegjs",
"test": "mocha --timeout 5000 --reporter spec",
"lint": "eslint index.js test/ cli.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/duaraghav8/solparse.git"
},
"bin": {
"solidity-parser": "./cli.js"
},
"contributors": [
{
"name": "Tim Coulter",
"email": "[email protected]",
"url": "http://timothyjcoulter.com"
},
{
"name": "Raghav Dua",
"email": "[email protected]",
"url": "http://raghavdua.com"
},
{
"name": "Federico Bond",
"email": "[email protected]"
},
{
"name": "Christopher Gewecke",
"email": "[email protected]"
}
],
"license": "MIT",
"dependencies": {
"mocha": "^7.1.2",
"pegjs": "^0.10.0",
"yargs": "^15.3.1"
},
"devDependencies": {
"mkdirp": "^1.0.4"
}
}