forked from federicobond/solidity-parser-antlr
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
46 lines (46 loc) · 1.4 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
{
"name": "solidity-parser-antlr",
"version": "0.4.8",
"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",
"prepare": "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 <[email protected]>",
"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": "^6.2.2",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-node": "^9.2.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1",
"mocha": "^6.2.0",
"nyc": "^14.1.1",
"prettier": "^1.18.2",
"tslint": "5.19.0",
"tslint-config-prettier": "^1.18.0",
"typescript": "3.6.2",
"yarn": "^1.17.3"
},
"nyc": {
"include": [
"src/*.js"
]
}
}