forked from federicobond/solidity-parser-antlr
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1.19 KB
/
package.json
File metadata and controls
41 lines (41 loc) · 1.19 KB
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
{
"name": "solidity-parser-antlr",
"version": "0.3.1",
"description": "A Solidity parser built from a robust ANTLR 4 grammar",
"main": "dist/index.js",
"scripts": {
"antlr4": "sh scripts/antlr4.sh",
"build": "rm -rf dist && babel --out-dir=dist src",
"prepublish": "yarn build",
"prettier": "find src -name *.js | egrep -v '^src/(lib|antlr4)/' | xargs prettier --no-semi --single-quote --write",
"eslint": "eslint src",
"test": "nyc mocha"
},
"author": "Federico Bond <federicobond@gmail.com>",
"homepage": "https://github.com/federicobond/solidity-parser-antlr",
"repository": {
"type": "git",
"url": "https://github.com/federicobond/solidity-parser-antlr.git"
},
"license": "MIT",
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-preset-env": "^1.7.0",
"chai": "^4.0.2",
"eslint": "^4.0.0",
"eslint-config-standard": "^10.2.1",
"eslint-plugin-import": "^2.3.0",
"eslint-plugin-node": "^5.0.0",
"eslint-plugin-promise": "^3.5.0",
"eslint-plugin-standard": "^3.0.1",
"mocha": "^3.4.2",
"nyc": "^11.0.2",
"prettier": "^1.4.4",
"yarn": "^1.7.0"
},
"nyc": {
"include": [
"src/*.js"
]
}
}