angular-cached-resource
Version:
An AngularJS module to interact with RESTful resources, even when browser is offline
37 lines • 1.31 kB
JSON
{
"name": "angular-cached-resource",
"version": "0.4.5",
"description": "An AngularJS module to interact with RESTful resources, even when browser is offline",
"author": "Good Eggs <open-source@goodeggs.com>",
"contributors": [
"Max Edmands <max@goodeggs.com>",
"Aaron Borden <aaron@goodeggs.com>"
],
"repository": {
"type": "git",
"url": "git://github.com/goodeggs/angular-cached-resource.git"
},
"homepage": "https://github.com/goodeggs/angular-cached-resource",
"bugs": "https://github.com/goodeggs/angular-cached-resource/issues",
"devDependencies": {
"coffee-script": ">=1.7.x",
"karma": "^0.10.9",
"karma-coffee-preprocessor": "^0.1.3",
"karma-phantomjs-launcher": "^0.1.2",
"karma-mocha": "^0.1.1",
"karma-chai": "^0.1.0",
"uglify-js": "^2.4.12",
"browserify": "^3.32.0",
"bower": "^1.3.1"
},
"main": "angular-cached-resource.js",
"scripts": {
"test": "karma start",
"prepublish": "bower -sj install",
"compile": "coffee --bare --compile --output lib/ src/",
"link": "browserify lib/index.js > angular-cached-resource.js",
"minify": "uglifyjs angular-cached-resource.js > angular-cached-resource.min.js",
"build": "npm run compile && npm run link && npm run minify",
"pretest": "npm run build"
}
}