forked from duaraghav8/solparse
-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
executable file
·52 lines (52 loc) · 1.33 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
{
"name": "solparse-exp-jb",
"version": "4.0.0",
"description": "PEG.js Solidity parser for Javascript, exp as in experimental to continue to support latest solidity features and work with vscode solidity",
"main": "index.js",
"scripts": {
"prepublish": "npm run build",
"build": "mkdir -p ./build && peggy --cache -o ./build/parser.js ./solidity.pegjs && peggy -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/juanfranblanco/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]"
},
{
"name": "Juan Blanco"
}
],
"license": "MIT",
"dependencies": {
"peggy": "^1.2.0",
"yargs": "^10.0.3"
},
"devDependencies": {
"chai": "^4.2.0",
"mkdirp": "^0.5.1",
"mocha": "^4.0.1"
}
}