-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
33 lines (33 loc) · 947 Bytes
/
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
{
"name": "solcheck",
"version": "0.1.3",
"description": "A Solidity linter written in JS",
"main": "src/index.js",
"repository": "https://github.com/federicobond/solcheck.git",
"author": "Federico Bond <[email protected]>",
"license": "GPL-3.0",
"scripts": {
"test": "mocha --compilers js:babel-register",
"prettier": "find src -name *.js | xargs prettier --no-semi --write",
"compile": "babel -d lib/ src/",
"pretest": "npm run compile",
"prepublish": "npm run compile"
},
"bin": {
"solcheck": "./bin/solcheck.js"
},
"dependencies": {
"babel-polyfill": "^6.23.0",
"eslint": "^4.2.0",
"find-up": "^2.1.0",
"get-stdin": "^5.0.1",
"globby": "^6.1.0",
"solidity-parser-antlr": "federicobond/solidity-parser-antlr#master",
"yargs": "^8.0.2"
},
"devDependencies": {
"babel-cli": "^6.24.1",
"babel-preset-env": "^1.5.2",
"babel-register": "^6.24.1"
}
}