Skip to content

Instantly share code, notes, and snippets.

View toddlemoine's full-sized avatar

Todd Lemoine toddlemoine

View GitHub Profile
@toddlemoine
toddlemoine / package.json
Created April 30, 2016 03:02 — forked from addyosmani/package.json
npm run-scripts boilerplate
{
"name": "my-app",
"version": "1.0.0",
"description": "My test app",
"main": "src/js/index.js",
"scripts": {
"jshint:dist": "jshint src/js/*.js'",
"jshint": "npm run jshint:dist",
"jscs": "jscs src/*.js",
"browserify": "browserify -s Validating -o ./dist/js/build.js ./lib/index.js",
@toddlemoine
toddlemoine / index.html
Last active January 30, 2017 17:43 — forked from anonymous/index.html
Merging cells from one table to another JS Bin// source https://jsbin.com/jupaxuruja
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width">
<title>JS Bin</title>
<style id="jsbin-css">
table {
width: 100%;
border: 1px solid black;