From 97b715552288027253fe5cbf84a5ccc330f3adf1 Mon Sep 17 00:00:00 2001 From: Ryan Van Etten Date: Fri, 24 Aug 2018 03:31:30 -0700 Subject: [PATCH] package deets...json...editor...license --- .editorconfig | 7 +++++++ LICENSE.md | 7 +++++++ package-lock.json | 5 +++++ package.json | 38 ++++++++++++++++++++++++++++++++++++++ test.js | 4 ++++ 5 files changed, 61 insertions(+) create mode 100644 .editorconfig create mode 100644 LICENSE.md create mode 100644 package-lock.json create mode 100644 package.json create mode 100644 test.js diff --git a/.editorconfig b/.editorconfig new file mode 100644 index 0000000..b3dfee7 --- /dev/null +++ b/.editorconfig @@ -0,0 +1,7 @@ +root = true + +[*] +end_of_line = lf +insert_final_newline = true +indent_style = space +indent_size = 2 diff --git a/LICENSE.md b/LICENSE.md new file mode 100644 index 0000000..ca29444 --- /dev/null +++ b/LICENSE.md @@ -0,0 +1,7 @@ +ISC License + +Copyright (c) [s9a](https://github.com/s9a) + +Permission to use, copy, modify, and/or distribute this software for any purpose with or without fee is hereby granted, provided that the above copyright notice and this permission notice appear in all copies. + +THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. diff --git a/package-lock.json b/package-lock.json new file mode 100644 index 0000000..729af81 --- /dev/null +++ b/package-lock.json @@ -0,0 +1,5 @@ +{ + "name": "@s9a/volume", + "version": "0.0.0", + "lockfileVersion": 1 +} diff --git a/package.json b/package.json new file mode 100644 index 0000000..142e817 --- /dev/null +++ b/package.json @@ -0,0 +1,38 @@ +{ + "name": "@s9a/volume", + "version": "0.0.0", + "description": "Pump up font v o l u m e", + "main": "volume.css", + "license": "ISC", + "homepage": "https://s9a.github.io/volume/", + "scripts": { + "test": "node test" + }, + "repository": { + "type": "git", + "url": "git+https://github.com/s9a/volume.git" + }, + "bugs": { + "url": "https://github.com/s9a/volume/issues" + }, + "keywords": [ + "functional-css", + "functional css", + "composable css", + "letter-spacing", + "word-spacing", + "line-height", + "responsive", + "typography", + "composable", + "font-size", + "tracking", + "posters", + "poster", + "simple", + "design", + "cool", + "rwd", + "css" + ] +} diff --git a/test.js b/test.js new file mode 100644 index 0000000..70cd496 --- /dev/null +++ b/test.js @@ -0,0 +1,4 @@ +const fs = require("fs") +let pkg = fs.readFileSync("./package.json", "utf8") +pkg = JSON.parse(pkg) +console.log(pkg)