package.json
1 { 2 "name": "events", 3 "id": "events", 4 "version": "1.1.1", 5 "description": "Node's event emitter for all engines.", 6 "keywords": [ 7 "events", 8 "eventEmitter", 9 "eventDispatcher", 10 "listeners" 11 ], 12 "author": "Irakli Gozalishvili <rfobic@gmail.com> (http://jeditoolkit.com)", 13 "repository": { 14 "type": "git", 15 "url": "git://github.com/Gozala/events.git", 16 "web": "https://github.com/Gozala/events" 17 }, 18 "bugs": { 19 "url": "http://github.com/Gozala/events/issues/" 20 }, 21 "main": "./events.js", 22 "engines": { 23 "node": ">=0.4.x" 24 }, 25 "devDependencies": { 26 "mocha": "~1.21.4", 27 "zuul": "~1.10.2" 28 }, 29 "scripts": { 30 "test": "mocha --ui qunit -- tests/index.js && zuul -- tests/index.js" 31 }, 32 "license": "MIT" 33 }