forked from citrix-research/js-signals
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
51 lines (51 loc) · 1.15 KB
/
package.json
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
{
"name": "signals",
"description": "Custom Event/Messaging System",
"keywords": [
"js-signals",
"signals",
"pub/sub",
"event",
"publish",
"subscribe",
"observer"
],
"homepage": "http://millermedeiros.github.com/js-signals/",
"version": "1.1.1",
"build": "274",
"author": {
"name": "Miller Medeiros",
"url": "http://blog.millermedeiros.com/"
},
"repository": {
"type": "git",
"url": "https://github.com/millermedeiros/js-signals.git"
},
"main": "dist/signals.js",
"bugs": {
"url": "https://github.com/millermedeiros/js-signals/issues"
},
"devDependencies": {
"grunt": "^0.4.5",
"grunt-build-number": "^1.0.0",
"grunt-closure-compiler": "0.0.21",
"grunt-contrib-clean": "0.6.0",
"grunt-contrib-copy": "^0.8.0",
"grunt-contrib-jshint": "0.11.1",
"grunt-jsdoc": "^0.5.8",
"grunt-string-replace": "^1.0.0",
"jasmine-node": "^1.12.0"
},
"scripts": {
"test": "jasmine-node test/spec"
},
"directories": {
"doc": "./dist/docs"
},
"license": [
{
"type": "MIT",
"url": "http://www.opensource.org/licenses/mit-license.php"
}
]
}