-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1.05 KB
/
package.json
File metadata and controls
41 lines (41 loc) · 1.05 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
{
"name": "jquery-pubsub",
"version": "1.0.3",
"description": "Implementation of pubsub that allows for hierarchical categorical publish and subscribe.",
"main": "jquery.pubsub.js",
"scripts": {
"test": "gulp test",
"coveralls": "gulp cover"
},
"repository": {
"type": "git",
"url": "git://github.com/Digitalxero/jquery-pubsub.git"
},
"keywords": [
"jquery",
"pubsub",
"plugin"
],
"author": "Dj Gilcrease",
"license": "MIT",
"bugs": {
"url": "https://github.com/Digitalxero/jquery-pubsub/issues"
},
"homepage": "http://plugins.jquery.com/jquery-pubsub/",
"devDependencies": {
"gulp": "^3.8.8",
"karma-jasmine": "^0.2",
"karma": "^0.12.23",
"gulp-jshint": "^1.8.4",
"karma-phantomjs-launcher": "^0.1.4",
"karma-chrome-launcher": "^0.1.4",
"gulp-uglify": "^1.0.1",
"gulp-rename": "^1.2.0",
"jquery": "^2.1.1",
"jshint-stylish": "^0.4.0",
"karma-spec-reporter": "0.0.13",
"karma-coverage": "^0.2.6",
"coveralls": "^2.11.1",
"gulp-coveralls": "^0.1.3"
}
}