-
Notifications
You must be signed in to change notification settings - Fork 54
/
package.json
44 lines (44 loc) · 1.03 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
{
"name": "solidity-parser",
"version": "0.4.0",
"description": "PEG.js Solidity parser for Javascript",
"main": "index.js",
"scripts": {
"prepublish": "npm run build",
"build": "mkdirp ./build && pegjs -o ./build/parser.js ./solidity.pegjs && pegjs -o ./build/imports_parser.js ./imports.pegjs",
"test": "mocha --timeout 5000 --reporter spec",
"lint": "eslint ."
},
"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": "^2.4.5",
"pegjs": "^0.10.0",
"yargs": "^4.6.0"
},
"devDependencies": {
"mkdirp": "^0.5.1"
}
}