Skip to content
This repository has been archived by the owner on Feb 23, 2021. It is now read-only.

Commit

Permalink
Initial commit
Browse files Browse the repository at this point in the history
  • Loading branch information
mlmorg committed Dec 21, 2014
0 parents commit 90b2fac
Show file tree
Hide file tree
Showing 5 changed files with 52 additions and 0 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
/node_modules
3 changes: 3 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
# r-dom

React DOM wrapper
5 changes: 5 additions & 0 deletions index.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
'use strict';

module.exports = rDOM;

function rDOM() {}
41 changes: 41 additions & 0 deletions package.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,41 @@
{
"name": "r-dom",
"description": "React DOM wrapper",
"version": "0.0.0",
"homepage": "https://github.com/uber/r-dom",
"author": {
"name": "Matt Morgan",
"email": "matt@mlmorg.com",
"url": "http://mlmorg.com"
},
"keywords": [
"react",
"react.js",
"markup",
"dom"
],
"repository": {
"type": "git",
"url": "git://github.com/uber/r-dom.git"
},
"bugs": {
"url": "https://github.com/uber/r-dom/issues"
},
"licenses": [
{
"type": "MIT",
"url": "https://github.com/uber/r-dom/blob/master/LICENSE"
}
],
"main": "index.js",
"dependencies": {},
"devDependencies": {
"lint-trap": "^0.4.9",
"tape": "^3.0.0",
"tap-spec": "^1.0.0"
},
"scripts": {
"lint": "lint-trap",
"test": "npm run lint && node test/index.js | tap-spec"
}
}
2 changes: 2 additions & 0 deletions test/index.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
'use strict';
var tape = require('tape');

0 comments on commit 90b2fac

Please sign in to comment.