Browse Source

[add] license & description fields in package.json
[bugfix] updated gitignore after 12668f24833bf70d97c33f278bbccd9778a68848

B Thibault 8 years ago
parent
commit
1ec3d95058
2 changed files with 10 additions and 6 deletions
  1. 1 1
      .gitignore
  2. 9 5
      package.json

+ 1 - 1
.gitignore

@@ -1,7 +1,7 @@
 *.swp
 *.bak
 cli/closure-compiler-v*.jar
-/src/config.js
+/srv/config.js
 
 # cache
 store.json

+ 9 - 5
package.json

@@ -1,6 +1,9 @@
 {
-  "name": "knackigate-slack",
-  "dependencies": [
+  "name": "knackigate-slack"
+
+  ,"description": "Slack http client using long polling"
+
+  ,"dependencies": [
     "ws",
     "http",
     "client-sessions",
@@ -8,9 +11,10 @@
     "node-file-cache",
     "memory-cache",
     "sleep"
-  ],
-  "repository": {
+
+  ] ,"repository": {
     "type": "git",
     "url": "git@git.knacki.info:isundil/knackigate-slack"
-  }
+
+  } ,"license": "GPL-3.0"
 }