Skip to content
This repository has been archived by the owner on Mar 1, 2023. It is now read-only.

Commit

Permalink
add license, tweak dependency versions a bit
Browse files Browse the repository at this point in the history
  • Loading branch information
paularmstrong committed Oct 21, 2012
1 parent 9e386f6 commit 09b1e21
Show file tree
Hide file tree
Showing 3 changed files with 49 additions and 15 deletions.
7 changes: 7 additions & 0 deletions LICENSE
@@ -0,0 +1,7 @@
Copyright (c) 2012 Paul Armstrong

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
19 changes: 19 additions & 0 deletions README.md
Expand Up @@ -8,6 +8,12 @@ Because you know HTML, Git is your content management system. All that you reall
Usage
-----

### Getting Started

#### Data

For every `*.html` file found, _Still_ will look to see if there is a `.json` file of the same name in the same directory. If there is, that file will be used as the data context for the rendered template.

### Building Your Site

still [path] -o [output path] [options]
Expand Down Expand Up @@ -55,3 +61,16 @@ Usage
* 2 = warnings
* 3 = debug
* [default: 1]

License
-------

(The MIT License)

Copyright (c) 2012 Paul Armstrong <paul@paularmstrongdesigns.com>

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
38 changes: 23 additions & 15 deletions package.json
Expand Up @@ -4,11 +4,12 @@
"description": "A static site generator built with node.js",
"main": "index.js",
"bin": {
"still": "bin/still",
"still-server": "bin/server"
"still": "./bin/still",
"still-server": "./bin/server"
},
"scripts": {
"test": "make lint && make test"
"test": "make lint && make test",
"prepublish": "make clean && npm prune"
},
"repository": {
"type": "git",
Expand All @@ -19,24 +20,31 @@
"express",
"html"
],
"author": "Paul Armstrong <paul@paularmstrongdesigns.com>",
"license": "MIT",
"author": {
"name": "Paul Armstrong",
"email": "<paul@paularmstrongdesigns.com>",
"url": "http://paularmstrongdesigns.com"
},
"license": {
"type": "MIT",
"url": "https://github.com/paularmstrong/still/raw/master/LICENSE"
},
"dependencies": {
"colors": "~0.6",
"consolidate": "~0.4.0",
"ejs": "~0.8.3",
"consolidate": "~0.4",
"ejs": "~0.8",
"express": "~3.0",
"findit": "~0.1.2",
"jade": "~0.27.6",
"lodash": "~0.8.2",
"mkdirp": "~0.3.4",
"optimist": "~0.3.4",
"findit": "~0.1",
"jade": "~0.27",
"lodash": "~0.8",
"mkdirp": "~0.3",
"optimist": "~0.3",
"swig": "~0.13"
},
"devDependencies": {
"mocha": "~1.6.0",
"nodelint": "~0.6.2",
"should": "~1.2.0"
"mocha": "1.6.0",
"nodelint": "0.6.2",
"should": "1.2.0"
},
"preferGlobal": true
}

0 comments on commit 09b1e21

Please sign in to comment.