Skip to content

Commit

Permalink
9-pack-as-npm-package
Browse files Browse the repository at this point in the history
  • Loading branch information
idrabenia committed Sep 25, 2017
1 parent 8825e13 commit 628f387
Show file tree
Hide file tree
Showing 3 changed files with 20 additions and 4 deletions.
1 change: 1 addition & 0 deletions .coveralls.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
repo_token: t0M87uWo9CXTTgMISwBKy4u0pnunjxmKv
4 changes: 4 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,9 +1,13 @@
## Solhint Project

[![Build Status](https://travis-ci.org/tokenhouse/solhint.svg?branch=master)](https://travis-ci.org/tokenhouse/solhint)

[![npm version](http://img.shields.io/npm/v/solhint.svg?style=flat)](https://npmjs.org/package/solhint
"View this project on npm")

[![Coverage Status](https://coveralls.io/repos/github/tokenhouse/solhint/badge.svg?branch=master)](
https://coveralls.io/github/tokenhouse/solhint?branch=master)

This is an open source project for linting [solidity](http://solidity.readthedocs.io/en/develop/) code. This project
provide both **security** and **style guide** validations.

Expand Down
19 changes: 15 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,15 +1,23 @@
{
"name": "solhint",
"version": "1.0.5",
"version": "1.0.6",
"description": "Solidity Code Linter",
"main": "solhint.js",
"keywords": [
"solidity", "linter", "security-scanner", "etherium", "ast", "developer-tools", "code-quality", "smart-contracts"
"solidity",
"linter",
"security-scanner",
"etherium",
"ast",
"developer-tools",
"code-quality",
"smart-contracts"
],
"homepage": "https://tokenhouse.github.io/solhint/",
"repository": "https://github.com/tokenhouse/solhint",
"scripts": {
"test": "eslint *.js lib/*.js lib/rules/*.js test/*.js && mocha"
"exec-tests": "nyc -x \"**/grammar/**\" mocha && nyc report --reporter=text-lcov | coveralls",
"test": "eslint *.js lib/*.js lib/rules/*.js test/*.js && npm run exec-tests"
},
"bin": {
"solhint": "solhint.js"
Expand All @@ -25,7 +33,10 @@
},
"devDependencies": {
"assert": "1.4.1",
"coveralls": "2.13.1",
"eslint": "4.6.1",
"mocha": "3.5.0"
"mocha": "3.5.0",
"mocha-lcov-reporter": "1.3.0",
"nyc": "11.2.1"
}
}

0 comments on commit 628f387

Please sign in to comment.