create project structure, using npm as a build tool

This commit is contained in:
Joshua 2016-04-28 01:28:34 -04:00
parent c13b0bdd2f
commit 4dd6e2020b
6 changed files with 124 additions and 1 deletions

22
package.json Normal file
View file

@ -0,0 +1,22 @@
{
"name": "dash-price-ticker"
, "version": "1.0.0"
, "description": "Embeddable dash price widget"
, "scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"lint": "echo '=> linting' && jshint assets/scripts/*.js"
}
, "repository": {
"type": "git"
, "url": "git+https://github.com/seigler/Dash-html-ticker.git"
}
, "author": "Joshua Seigler"
, "license": "ISC"
, "bugs": {
"url": "https://github.com/seigler/Dash-html-ticker/issues"
}
, "homepage": "https://github.com/seigler/Dash-html-ticker#readme"
, "devDependencies": {
"jshint": "^2.9.2"
}
}