Skip to content

Commit ae00d47

Browse files
committed
Add package.json for npm support. Set tag date.
1 parent a16ca9b commit ae00d47

File tree

3 files changed

+70
-13
lines changed

3 files changed

+70
-13
lines changed

CHANGES.md

Lines changed: 21 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,28 @@
11
# Changelog
22

3+
## 0.0.5 (25 August 2015)
4+
5+
- Fix missing var statements causing error on strophe.roster.js
6+
- Add missing 'hidden' type on FORM_TYPE field
7+
- Wrap Strophe.RSM and Strophe.disco for AMD
8+
- Avoid adding duplicate handlers in XmppRoom objects when join is called
9+
- New bookmarks plugin
10+
- New plugins: sensordata and control
11+
- Allow passing authcid param introduced by [strophe/strophejs#113](https://github.com/strophe/strophejs/pull/113)
12+
- Add event handler management for pubsub plugin
13+
314
## 0.0.4 (15 October 2014)
415

5-
* Merge pull request #40 from allan-simon/more_precise_control_on_roster_update_events
6-
* Merge pull request #38 from pelish8/master
7-
* Merge pull request #31 from arielscarpinelli/archive-preferences
8-
* mug: Buefix, don't deregister handler when receiving presence stanza containing an error.
9-
* muc: Added ability to invite multiple users.
10-
* muc: New method createConfiguredRoom
11-
* muc: IE9 fixes.
12-
* Create strophe.mam.v0.3.js
16+
- Merge pull request #40 from allan-simon/more_precise_control_on_roster_update_events
17+
- Merge pull request #38 from pelish8/master
18+
- Merge pull request #31 from arielscarpinelli/archive-preferences
19+
- mug: Buefix, don't deregister handler when receiving presence stanza containing an error.
20+
- muc: Added ability to invite multiple users.
21+
- muc: New method createConfiguredRoom
22+
- muc: IE9 fixes.
23+
- Create strophe.mam.v0.3.js
1324

1425
## 0.0.3 (23 Auguest 2014)
1526

16-
* Merge pull request #35 from jaygeeseman/fuck_ie8
17-
* Fix IE9 errors in Strophe.muc
27+
- Merge pull request #35 from jaygeeseman/fuck_ie8
28+
- Fix IE9 errors in Strophe.muc

bower.json

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,13 @@
11
{
22
"name": "strophejs-plugins",
3-
"version": "0.0.3",
3+
"version": "0.0.5",
44
"ignore": [
55
".gitignore",
66
".jshintignore",
77
".jshintrc",
88
"bower.json",
99
"gruntfile.js",
10-
"package.json",
11-
"README.markdown"
10+
"package.json"
1211
],
1312
"dependencies": {
1413
"strophe": ">=1.1"

package.json

Lines changed: 47 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,47 @@
1+
{
2+
"name": "strophejs-plugins",
3+
"description": "Strophe.js community plugins",
4+
"version": "0.0.5",
5+
"homepage": "https://github.com/strophe/strophejs-plugins",
6+
"repository": {
7+
"type": "git",
8+
"url": "git://github.com/strophe/strophejs-plugins.git"
9+
},
10+
"keywords": [
11+
"xmpp",
12+
"message",
13+
"bosh",
14+
"websocket",
15+
"browser",
16+
"plugins"
17+
],
18+
"files": [
19+
"strophe.js",
20+
"CHANGES.md",
21+
"README.md"
22+
],
23+
"author": "The Strophe.js community",
24+
"dependencies": {
25+
},
26+
"engines": {
27+
"browser": "*"
28+
},
29+
"devDependencies": {
30+
"bower": "latest",
31+
"grunt": "~0.4",
32+
"grunt-cli": "~0.1.13",
33+
"grunt-contrib-clean": "~0.5.0",
34+
"grunt-contrib-concat": "~0.3.0",
35+
"grunt-contrib-connect": "^0.9.0",
36+
"grunt-contrib-copy": "~0.5.0",
37+
"grunt-contrib-jshint": "~0.10.0",
38+
"grunt-contrib-qunit": "^0.5.2",
39+
"grunt-contrib-requirejs": "^0.4.4",
40+
"grunt-contrib-uglify": "~0.2.7",
41+
"grunt-contrib-watch": "~0.5.3",
42+
"grunt-mkdir": "~0.1.1",
43+
"grunt-natural-docs": "~0.1.1",
44+
"grunt-shell": "~0.6.1",
45+
"requirejs": "~2.1.15"
46+
}
47+
}

0 commit comments

Comments
 (0)