UNPKG

ampersand-view

Version:

A smart base view for Backbone apps, to make it easy to bind collections and properties to the DOM.

80 lines (79 loc) 2.31 kB
{ "name": "ampersand-view", "description": "A smart base view for Backbone apps, to make it easy to bind collections and properties to the DOM.", "version": "10.0.3", "author": "Henrik Joreteg <henrik@andyet.net>", "browser": "./ampersand-view.js", "browserify": { "transform": [ "ampersand-version" ] }, "bugs": "https://github.com/ampersandjs/ampersand-view/issues", "dependencies": { "ampersand-collection-view": "^2.0.2", "ampersand-dom-bindings": "^3.9.1", "ampersand-state": "^5.0.2", "ampersand-version": "^1.0.2", "component-classes": "^1.2.6", "domify": "^1.4.0", "events-mixin": "^1.3.0", "lodash": "^4.17.4", "matches-selector": "^1.2.0" }, "devDependencies": { "ampersand-model": "^8.0.0", "ampersand-rest-collection": "^6.0.0", "browserify": "^14.3.0", "jsdom": "^11.1.0", "precommit-hook": "^3.0.0", "run-browser": "^2.0.2", "tap-spec": "^4.1.1", "tape": "^4.6.0", "tape-run": "^3.0.0" }, "homepage": "https://github.com/ampersandjs/ampersand-view", "keywords": [ "backbone", "view", "browser", "browserify" ], "license": "MIT", "main": "./ampersand-view.js", "repository": { "type": "git", "url": "git://github.com/ampersandjs/ampersand-view.git" }, "scripts": { "validate": "jshint .", "start": "run-browser test/index.js", "test": "browserify test/index.js | tape-run | tap-spec", "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", "lint": "jshint ." }, "testling": { "files": "test/*.js", "browsers": [ "ie/9..latest", "firefox/17..latest", "firefox/nightly", "chrome/22..latest", "chrome/canary", "opera/12..latest", "opera/next", "safari/5.1..latest", "ipad/6.0..latest", "iphone/6.0..latest", "android-browser/4.2..latest" ] }, "pre-commit": [ "lint", "validate", "test" ] }