This repository has been archived by the owner on Dec 22, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
30 lines (30 loc) · 1.92 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
{
"author": "chrisweb <[email protected]> (https://chris.lu)",
"bugs": {
"url": "https://github.com/chrisweb/ribs.js/issues"
},
"description": "ribs.js, built around backbone.js",
"devDependencies": {
"grunt": "^0.4.5"
},
"homepage": "https://github.com/chrisweb/ribs.js",
"keywords": [
"backbone",
"ribs",
"javascript",
"chrisweb"
],
"license": "MIT",
"main": "build/ribs.js",
"name": "ribsjs",
"readme": "ribs.js 0.1.0\r\n=============\r\n\r\nThis project is not ready for use in production. It's still under heavy development. I wrote this for another project I work on right now, but its still far from being stable. Testing are fixes and comments are welcome.\r\n\r\nmain goal(s):\r\n* extend backbone view to automate some tasks\r\n* a must have is that views code should not contain any html markup, every bit of html should be in the template so that designers only have to touch that file\r\n* new collection view to build lists and when destroyed auto close children\r\n* new controller\r\n* views loader based on requirejs\r\n* collections batch save for all models at once\r\n\r\nfuture:\r\n* use promises\r\nhttps://github.com/jakearchibald/es6-promise\r\n* use shadow dom for views (polymer shadow dom polyfill)\r\nhttps://github.com/polymer/ShadowDOM\r\n\r\n--------------------------\r\n\r\n#ribs documentation\r\n\r\n##ribs views\r\n\r\n### onInitialize hook\r\n* if you want to do stuff during initialization of the view\r\n* don't try to append html to this.$el during onIntialize as it would get overwriten, instead use onRender\r\n\r\n### onRender hook\r\n* if you want to add programmatically stuff to the view during the rendering process use onRender\r\n\r\nfor more check out the documentation.md\r\n",
"readmeFilename": "README.md",
"repository": {
"type": "git",
"url": "https://github.com/chrisweb/ribs.js.git"
},
"scripts": {
"test": "grunt"
},
"version": "0.1.0"
}