Skip to content

Commit

Permalink
Let npm reformat package.json
Browse files Browse the repository at this point in the history
  • Loading branch information
jcoglan committed Jun 10, 2019
1 parent 2d211f3 commit f6c50ab
Show file tree
Hide file tree
Showing 2 changed files with 29 additions and 21 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1 +1,2 @@
node_modules
package-lock.json
49 changes: 28 additions & 21 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,22 +1,29 @@
{ "name" : "websocket-extensions"
, "description" : "Generic extension manager for WebSocket connections"
, "homepage" : "http://github.com/faye/websocket-extensions-node"
, "author" : "James Coglan <jcoglan@gmail.com> (http://jcoglan.com/)"
, "keywords" : ["websocket"]
, "license" : "Apache-2.0"

, "version" : "0.1.3"
, "engines" : { "node": ">=0.8.0" }
, "files" : ["lib"]
, "main" : "./lib/websocket_extensions"

, "devDependencies" : { "jstest": "*" }

, "scripts" : { "test": "jstest spec/runner.js" }

, "repository" : { "type" : "git"
, "url" : "git://github.com/faye/websocket-extensions-node.git"
}

, "bugs" : "http://github.com/faye/websocket-extensions-node/issues"
{
"name": "websocket-extensions",
"description": "Generic extension manager for WebSocket connections",
"homepage": "http://github.com/faye/websocket-extensions-node",
"author": "James Coglan <jcoglan@gmail.com> (http://jcoglan.com/)",
"keywords": [
"websocket"
],
"license": "Apache-2.0",
"version": "0.1.3",
"engines": {
"node": ">=0.8.0"
},
"files": [
"lib"
],
"main": "./lib/websocket_extensions",
"devDependencies": {
"jstest": "*"
},
"scripts": {
"test": "jstest spec/runner.js"
},
"repository": {
"type": "git",
"url": "git://github.com/faye/websocket-extensions-node.git"
},
"bugs": "http://github.com/faye/websocket-extensions-node/issues"
}

0 comments on commit f6c50ab

Please sign in to comment.