diff options
| author | Jules Laplace <jules@okfoc.us> | 2016-03-22 15:09:28 -0400 |
|---|---|---|
| committer | Jules Laplace <jules@okfoc.us> | 2016-03-22 15:09:28 -0400 |
| commit | b2d594993735b97c624d2474b20a4da43faafc61 (patch) | |
| tree | 9e19bb5f182345ef905d02fe91ec6a5ca2b71b47 | |
| parent | 87e66be9162285c42f186a71a44b13b119544469 (diff) | |
npm init
| -rw-r--r-- | .gitignore | 15 | ||||
| -rw-r--r-- | package.json | 24 |
2 files changed, 39 insertions, 0 deletions
diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..be870a2 --- /dev/null +++ b/.gitignore @@ -0,0 +1,15 @@ +.bundle +*.DS_Store +db/*.sqlite3 +log/*.log +tmp/ +.#* +*~ +*.orig +*# +*.swp +node_modules +restart +.env +*.sqlite3 + diff --git a/package.json b/package.json new file mode 100644 index 0000000..635e23d --- /dev/null +++ b/package.json @@ -0,0 +1,24 @@ +{ + "name": "portfolio", + "version": "1.0.0", + "description": "okfocus portfolio", + "main": "index.js", + "scripts": { + "test": "echo \"Error: no test specified\" && exit 1" + }, + "repository": { + "type": "git", + "url": "https://github.com/okfocus/portfolio.git" + }, + "author": "okfocus <frontdesk@okfoc.us>", + "license": "LNT", + "bugs": { + "url": "https://github.com/okfocus/portfolio/issues" + }, + "dependencies": { + "dotenv": "^2.0.0", + "object-assign": "^2.0.0", + "okcms": "git+ssh://git@github.com:okfocus/okcms.git#v0.1.18" + }, + "homepage": "https://github.com/okfocus/portfolio" +} |
