-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
41 lines (41 loc) · 1.04 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
{
"name": "eventify-js",
"description": "A micro JavaScript event dispatcher.",
"url": "http://geraldchecka.github.io/eventify",
"version": "1.0.4",
"author": "Anvesh Checka",
"scripts": {
"doc": "docco eventify.js",
"build": "uglifyjs eventify.js --mangle --source-map eventify-min.map -o eventify-min.js",
"test": "grunt jasmine:eventify"
},
"devDependencies": {
"docco": "^0.7.0",
"uglify-js": "^2.5.0",
"grunt": "^0.4.5",
"grunt-cli": "^0.1.13",
"grunt-contrib-jasmine": "^0.9.2",
"grunt-template-jasmine-istanbul": "^0.4.0",
"grunt-coveralls": "^1.0.0"
},
"main": "eventify.js",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/geraldchecka/eventify.git"
},
"private": false,
"bugs": {
"url": "https://github.com/geraldchecka/eventify/issues"
},
"homepage": "https://github.com/geraldchecka/eventify#readme",
"engines": {
"node": "0.12.x"
},
"keywords": [
"eventify",
"message-bus",
"events",
"event-dispatcher"
]
}