-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.21 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 1.21 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
42
43
44
45
46
47
48
49
50
51
52
53
54
{
"name": "angular-pubsub",
"version": "1.4.0",
"description": "Simple pubsub service for angularJS",
"author": "Gilles Lepretre <gilles.lepretre@lim.eu>",
"contributors": [
"Gilles Lepretre <gilles.lepretre@lim.eu>",
"Julien Sanchez <julien.sanchez@lim.eu>",
"Hervé Gaucher <herve.gaucher@lim.eu"
],
"repository": {
"type": "git",
"url": "git@github.com:glepretre/angular-pubsub.git"
},
"main": "dist/angular-pubsub.js",
"files": [
"dist",
"src/angular-pubsub.js"
],
"engines": {
"node": ">=6.11.3"
},
"license": "MIT",
"homepage": "https://github.com/glepretre/angular-pubsub",
"private": true,
"scripts": {
"test": "scripts/unit-tests.sh"
},
"dependencies": {},
"devDependencies": {
"jasmine-core": "2.x",
"jscs": "3.x",
"jshint": "2.x",
"karma": "2.x",
"karma-chrome-launcher": "2.x",
"karma-firefox-launcher": "1.x",
"karma-jasmine": "1.x",
"karma-requirejs": "1.x",
"requirejs": "2.x"
},
"bugs": {
"url" : "https://github.com/glepretre/angular-pubsub/issues"
},
"keywords": [
"angular",
"angularJS",
"pubsub",
"publish",
"subscribe",
"events",
"broadcast",
"communication"
]
}