Files
Andre Medeiros c067a50f8c Remove ImportDeclaration type
The type is not even used anymore, and was not completely defined. Also add some linting for Typescript files as this would have been caught by the linter.
2019-06-17 20:44:42 -03:00

47 lines
1.4 KiB
JSON

{
"name": "solidity-parser-antlr",
"version": "0.4.4",
"description": "A Solidity parser built from a robust ANTLR 4 grammar",
"main": "dist/index.js",
"types": "./index.d.ts",
"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",
"pretest": "eslint src && tslint-config-prettier-check ./tslint.json",
"test": "nyc mocha",
"tslint": "tslint-config-prettier-check ./tslint.json"
},
"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.2.0",
"eslint": "^5.15.1",
"eslint-plugin-import": "^2.16.0",
"eslint-plugin-node": "^8.0.1",
"eslint-plugin-promise": "^4.0.1",
"eslint-plugin-standard": "^4.0.0",
"mocha": "^6.0.2",
"nyc": "^13.3.0",
"prettier": "^1.16.4",
"tslint": "5.17.0",
"tslint-config-prettier": "^1.18.0",
"typescript": "3.5.2",
"yarn": "^1.13.0"
},
"nyc": {
"include": [
"src/*.js"
]
}
}