UNPKG

ampersand-events

Version:

Module that can be mixed into any object to provide eventing. Heavily based on Backbone Events.

50 lines (49 loc) 1.48 kB
{ "name": "ampersand-events", "description": "Module that can be mixed into any object to provide eventing. Heavily based on Backbone Events.", "version": "2.0.2", "author": "Henrik Joreteg <henrik@andyet.net>", "browserify": { "transform": [ "ampersand-version" ] }, "files": [ "libs", "ampersand-events.js", "NOTICE.md" ], "bugs": { "url": "https://github.com/ampersandjs/ampersand-events/issues" }, "dependencies": { "ampersand-version": "^1.0.2", "lodash": "^4.6.1" }, "devDependencies": { "phantomjs": "^1.9.19", "tape": "^4.4.0", "zuul": "^3.9.0" }, "homepage": "https://github.com/ampersandjs/ampersand-events", "keywords": [ "ampersand", "events" ], "license": "MIT", "main": "ampersand-events.js", "repository": { "type": "git", "url": "https://github.com/ampersandjs/ampersand-events" }, "scripts": { "start": "zuul --local -- test/index.js", "test": "zuul --phantom -- test/index.js", "test-ci": "zuul -- test/index.js", "preversion": "git checkout master && git pull && npm ls", "publish-patch": "npm run preversion && npm version patch && git push origin master --tags && npm publish", "publish-minor": "npm run preversion && npm version minor && git push origin master --tags && npm publish", "publish-major": "npm run preversion && npm version major && git push origin master --tags && npm publish", "validate": "npm ls" } }