UNPKG

hermanjs

Version:

Singleton models with Backbone and possibly other frameworks

48 lines (47 loc) 1.57 kB
{ "name": "hermanjs", "version": "1.0.3", "description": "Singleton models with Backbone and possibly other frameworks", "main": "dist/backbone-m.js", "directories": { "test": "test" }, "dependencies": {}, "devDependencies": { "backbone": "^1.1.2", "browserify": "^5.13.1", "jasmine-node": "^1.14.5", "jquery": "^2.1.3", "watchify": "^2.4.0", "uglify-js": "^2.4.16", "underscore": "^1.7.0" }, "scripts": { "test": "jasmine-node test/ --matchall --color --autotest --watch `pwd`/src/", "clean": "rm -r dist && mkdir dist", "build": "npm run build:backbone:min && npm run build:backbone && npm run build:angular", "build:backbone:min": "node_modules/browserify/bin/cmd.js src/m-for-backbone.js -s M -x backbone | uglifyjs -c > dist/backbone-m.min.js", "build:backbone": "node_modules/browserify/bin/cmd.js src/m-for-backbone.js -s M -x backbone --debug --verbose > dist/backbone-m.js", "build:angular": "node_modules/browserify/bin/cmd.js src/m-for-angular.js -s M --debug --verbose > dist/angular-m.js", "watch": "watchify src/m-for-backbone.js -s M -x backbone --debug --verbose -o dist/backbone-m.js" }, "repository": { "type": "git", "url": "https://github.com/Hermanya/m.git" }, "keywords": [ "manage", "generate", "model", "management", "orm", "backbone", "singleton" ], "author": "Herman Starikov", "license": "MIT", "bugs": { "url": "https://github.com/Hermanya/m/issues" }, "homepage": "https://github.com/Hermanya/m" }