Skip to content

Commit

Permalink
1.0.0-0
Browse files Browse the repository at this point in the history
  • Loading branch information
tkurki committed Jan 13, 2018
1 parent f51d993 commit 6b70709
Showing 1 changed file with 23 additions and 10 deletions.
33 changes: 23 additions & 10 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,24 +1,37 @@
{
"name": "signalk-server",
"version": "0.1.33",
"description":
"An implementation of a [Signal K](http://signalk.github.io) server for boats.",
"version": "1.0.0-0",
"description": "An implementation of a [Signal K](http://signalk.github.io) server for boats.",
"main": "index.js",
"scripts": {
"changelog":
"github-changes -o signalk -r signalk-server-node -a --only-pulls --use-commit-body --data=pulls",
"changelog": "github-changes -o signalk -r signalk-server-node -a --only-pulls --use-commit-body --data=pulls",
"start": "node bin/signalk-server",
"test": "mocha --exit",
"precommit": "lint-staged",
"format": "prettier-standard lib/**/*.js* providers/*.js* test/*.js* index.js package.json"
},
"lint-staged": {
"linters": {
"lib/**/*.js*": ["prettier-standard", "git add"],
"providers/*.js*": ["prettier-standard", "git add"],
"test/*.js*": ["prettier-standard", "git add"],
"index.js": ["prettier-standard", "git add"],
"package.jspn": ["prettier-standard", "git add"]
"lib/**/*.js*": [
"prettier-standard",
"git add"
],
"providers/*.js*": [
"prettier-standard",
"git add"
],
"test/*.js*": [
"prettier-standard",
"git add"
],
"index.js": [
"prettier-standard",
"git add"
],
"package.jspn": [
"prettier-standard",
"git add"
]
}
},
"bin": {
Expand Down

0 comments on commit 6b70709

Please sign in to comment.