forked from dojo/dojo1-dgrid
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add bower support and allow using npm install to install intern-geezer
* Add bower.json * Remove cpm-related dependencies from package.json * Add intern-geezer to devDependencies in package.json * Update README
- Loading branch information
Kenneth G. Franqueiro
committed
Aug 7, 2014
1 parent
849fe25
commit d4aefc2
Showing
3 changed files
with
101 additions
and
65 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
{ | ||
"name": "dgrid", | ||
"description": "A lightweight, mobile-ready, data-driven, modular widget designed for lists and grids", | ||
"keywords": [ | ||
"dojo", | ||
"grid" | ||
], | ||
"authors": [ | ||
"Kris Zyp", | ||
"Kenneth G. Franqueiro", | ||
"Ed Hager" | ||
], | ||
"main": "OnDemandGrid.js", | ||
"homepage": "http://dgrid.io", | ||
"repository": { | ||
"type": "git", | ||
"url": "git://github.com/SitePen/dgrid" | ||
}, | ||
"dependencies": { | ||
"dojo": ">=1.8.1", | ||
"dstore": ">=0.1.1", | ||
"xstyle": ">=0.1.3", | ||
"put-selector": ">=0.3.5" | ||
}, | ||
"ignore": [ | ||
".*", | ||
"test" | ||
], | ||
"license": [ "AFL-2.1", "BSD-3-Clause" ], | ||
"moduleType": [ "amd" ] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,31 +1,30 @@ | ||
{ | ||
"name": "dgrid", | ||
"author": "Kris Zyp", | ||
"version": "0.4.0-dev", | ||
"description": "A lightweight, mobile-ready, data-driven, modular widget designed for lists and grids", | ||
"licenses": [ | ||
{ | ||
"type": "AFLv2.1", | ||
"url": "http://trac.dojotoolkit.org/browser/dojo/trunk/LICENSE#L43" | ||
}, | ||
{ | ||
"type": "BSD", | ||
"url": "http://trac.dojotoolkit.org/browser/dojo/trunk/LICENSE#L13" | ||
} | ||
], | ||
"repository": { | ||
"type":"git", | ||
"url":"http://github.com/SitePen/dgrid" | ||
}, | ||
"dependencies": { | ||
"dojo": "1.7.2", | ||
"put-selector": "0.3.5", | ||
"xstyle": "0.1.3" | ||
}, | ||
"directories": { | ||
"lib": "." | ||
}, | ||
"main": "./OnDemandGrid", | ||
"icon": "http://packages.dojofoundation.org/images/dgrid.png", | ||
"dojoBuild": "package.js" | ||
"name": "dgrid", | ||
"author": "Kris Zyp", | ||
"version": "0.4.0-dev", | ||
"description": "A lightweight, mobile-ready, data-driven, modular widget designed for lists and grids", | ||
"licenses": [ | ||
{ | ||
"type": "AFLv2.1", | ||
"url": "https://spdx.org/licenses/AFL-2.1" | ||
}, | ||
{ | ||
"type": "BSD", | ||
"url": "http://opensource.org/licenses/BSD-3-Clause" | ||
} | ||
], | ||
"repository": { | ||
"type":"git", | ||
"url":"http://github.com/SitePen/dgrid" | ||
}, | ||
"devDependencies": { | ||
"intern-geezer": "~2" | ||
}, | ||
"directories": { | ||
"doc": "./doc", | ||
"lib": "." | ||
}, | ||
"main": "./OnDemandGrid", | ||
"icon": "http://packages.dojofoundation.org/images/dgrid.png", | ||
"dojoBuild": "package.js" | ||
} |